List posts
Endpoint examples
List Posts
Returns a list of posts. Supports limiting results via _limit query param.
GET
List posts
Overview
Response notes
- Returns a list of posts from JSONPlaceholder.
- No authentication required; perfect for demos of Mintlify Try it out.
- Fetch sample content items for demos, prototypes, or to test API flows.
- _limit (number): Optional. Maximum number of posts to return (1-100). Useful to keep responses short in demos.
- Status 200: An array of Post objects with fields id, userId, title, and body.
- JSONPlaceholder returns static seeded data; repeated calls return the same list unless filtered.
- Combine with /comments?postId= to show relationships.
- Use _limit to keep responses compact for readers.