Free REST API for Testing & Prototyping
Real REST API which is ready to handle your HTTP requests for free. Can be used for demo projects, testing, learning or even educating someone else.
✔ Full CRUD Support
✔ CORS Enabled
✔ JWT Authentication
✔ 13 Sample Objects
GET /restful-api/objects/7
{
"id": "7",
"name": "Apple MacBook Pro 16",
"data": {
"year": 2019,
"price": 1849.99,
"CPU model": "Intel Core i9",
"Hard disk size": "1 TB"
}
}
What HTTP methods are supported?
All major HTTP methods: GET, POST, PUT, PATCH and DELETE.
Does the API support CORS?
Yes, CORS is enabled for all domains, making it perfect for frontend development.
Can I modify or delete data?
Yes, you can create, update and delete objects. Data is stored in memory and resets when the server restarts.
Is this API free to use?
Yes, this API is completely free to use for testing and prototyping.
What data can I create with POST?
Each object requires a name field and an optional data field. The data field can contain any valid JSON object.
Can I paginate results?
Yes, use ?limit=&offset= query parameters to paginate. Filter by IDs with ?id=1&id=2.