Quickstart
From zero to a working, queryable data API in five steps.
Five steps to a live API
- 01Create an account. You start on a 14-day free trial.
- 02A default project is provisioned automatically (Org → Projects).
- 03Open Database and create a table with typed columns.
- 04Generate a project API key in Settings → API Keys with data:read / data:write.
- 05Call your data from anywhere via REST or the SDK.
Your first request
Once you have a key, list the rows of a table over HTTP. Pass the key as a bearer token:
curl
curl https://api.ussdly.com/api/v1/data/users \
-H "Authorization: Bearer usdly_xxx"Base URL
All API routes are served under the
/api prefix. The managed Data API lives under /api/v1/data.With the SDK
SDK coming soon
A typed JavaScript client is on the way. For now, call the same data over the REST Data API shown above.