cURL
curl --request GET \ --url https://jsonplaceholder.typicode.com/posts
[ { "userId": 123, "id": 123, "title": "<string>", "body": "<string>" } ]
Returns a list of posts. Supports limiting results via _limit query param.
- name: List first 5 posts method: GET path: /posts query: _limit: 5 headers: Accept: application/json
Max number of posts to return
1 <= x <= 100
A JSON array of posts