v1 · Stable & generally available

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.

Read quickstart

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.

1

Grab your API key

Create a test key from the dashboard — it starts with dapi_test_.

2

Call a read endpoint

Fetch a user by ID to verify auth is wired up correctly.

3

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.

Categories

GET /users/{id}

GET

Retrieve a user by ID.

Parameters

NameInTypeRequiredDescription

Response

200 OK Successful response — returns the requested resource as JSON.
200-response.json

      

Schemas

GET /users/{id}

GET

Send a sample request against the sandbox environment. No live data is touched.

Request

Response

Idle

Send a request to see the sandbox response here.

Copied to clipboard