--- title: 'JSONPlaceholder' description: 'Free fake REST API for testing and prototyping. Returns realistic JSON data.' --- # JSONPlaceholder Free fake REST API for testing and prototyping. Returns realistic JSON data. | Detail | Value | |---|---| | Category | Testing | | Base URL | `https://jsonplaceholder.typicode.com` | | Authentication | None | | Endpoints | 7 | | Connector key | `jsonplaceholder` | ## Using JSONPlaceholder in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **JSONPlaceholder** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /posts](./get_posts_test_listposts) | Get all posts | | [GET /posts/{id}](./get_posts_id_test_getpost) | Get a post by ID | | [POST /posts](./post_posts_test_createpost) | Create a post | | [PUT /posts/{id}](./put_posts_id_test_updatepost) | Update a post | | [DELETE /posts/{id}](./delete_posts_id_test_deletepost) | Delete a post | | [GET /users](./get_users_test_listusers) | Get all users | | [GET /comments](./get_comments_test_listcomments) | Get all comments | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.