Create your project & keys
Projects bundle collections, app users, logs, and automations. Use admin keys for setup, magic links for app users, and call everything with fetch(), cURL, or Postman.
How it works
Two keys, three steps
Admin keys for setup, session tokens for app users. Logs and automations are included on every project.
Create a project
Collections, app users, logs, and automations in one place.
Seed with admin key
Use admin keys to define collections and seed data.
Issue session tokens
Send magic links, verify tokens, and fetch with Bearer tokens.
Call your project from any client
fetch() · cURL · PostmanHeaders
Authorization: Bearer <session_token> Content-Type: application/json
fetch()
await fetch('https://reqres.in/app/collections/todos/records', {
headers: { Authorization: 'Bearer ' + sessionToken }
})
cURL
curl -H "Authorization: Bearer <session_token>" \ https://reqres.in/app/collections/todos/records
Postman
GET https://reqres.in/app/collections/todos/records Authorization: Bearer <session_token>
Ready to start your project?
Create a project, generate keys, and call it from the frontend today.