Posts#

Summary#

get_posts(**params)

Search posts

Module Contents#

pyinaturalist.v1.posts.get_posts(**params)#

Search posts

Notes

Parameters:
  • login – Return posts by this user

  • project_id – Return posts from this project

  • page – Pagination page number

  • per_page – Number of results to return in a page. The maximum value is generally 200 unless otherwise noted

  • dry_run – Just log the request instead of sending a real request

  • session – An existing Session object to use instead of creating a new one

Example

Get journal posts from user ‘username’

>>> response = get_posts(login='username')
Return type:

List[Dict[str, Any]]

Returns:

List containing journal posts from the iNaturalist site