Welcome to the Data API
A fast, predictable REST API for users, orders, products, and reporting. Query live data over HTTPS with simple JSON responses, cursor pagination, and granular API keys.
Base URL
All requests are made over HTTPS to a single base URL. Include your API key in the Authorization header on every call.
BASE https://api.example.com/v1
Core concepts
Three ideas unlock almost everything in the API.
Resources
Every object — a user, an order, a product — is a resource addressed by a stable URL pattern with a unique id.
Authentication
Bearer tokens scoped per environment. Test keys hit sandbox data; live keys are rate-limited but never sampled.
Pagination
List endpoints return cursor-based pages. Pass limit and cursor to walk large collections predictably.
Get started
Make your first request in under five minutes.
Grab your API key
Create a test key from the dashboard — it starts with dapi_test_.
Call a read endpoint
Fetch a user by ID to verify auth is wired up correctly.
Explore in the playground
Use the request explorer to send sample calls without writing any code.
More resources
Guides and tools to go further.
API Reference
Everything you can do with the Data API, organized by resource. Select a category to browse its endpoints, or search to jump straight to one.
GET /users/{id}
GETRetrieve a user by ID.
Parameters
| Name | In | Type | Required | Description |
|---|
Response
Schemas
GET /users/{id}
GETSend a sample request against the sandbox environment. No live data is touched.
Request
Response
Send a request to see the sandbox response here.