API playground

Try every Fake Store API endpoint without leaving the dashboard.

Products endpoints

Query products

Combine category, limit and sorting to mirror the /products endpoint.

Get product by ID

Retrieve a single product directly from /products/:id.

Update product

Send a PUT request to update any product fields.

Delete product

Issue a DELETE request to remove a product.

Cart endpoints

Query carts

Filter carts with optional dates, limits and sorting.

Get cart by ID

Retrieve a single cart using /carts/:id.

Get carts by user

Load the entire cart history for a user via /carts/user/:id.

Create cart

Send a POST request with a custom payload.

Update cart

Update cart contents with PUT /carts/:id.

Delete cart

Delete a cart record with DELETE /carts/:id.

User endpoints

Get user by ID

Retrieve a full profile from /users/:id.

Create user

POST a new user record with nested address data.

Update user

PUT changes to any user fields.

Delete user

Remove a user with DELETE /users/:id.