Overview
Read your Datlyne datasets over a REST API today. Get a key here and start building. A typed GraphQL schema and a direct PostgreSQL connection are planned next.
Three Ways In, One Shipped Today
Buy a dataset once, subscribe to its API, and read it over REST today. GraphQL and a direct SQL connection are planned additions that will share the same authentication and the same underlying data once they ship.
REST API
Predictable resource endpoints for every dataset and table. Available now.
View detailsGraphQLSoon
Query exactly the fields you need across tables in one request. Coming soon. Not yet available.
View detailsDirect SQLSoon
A read only PostgreSQL connection for BI tools and ORMs. Coming soon. Not yet available.
View detailsHow Access Works
Access follows the same steps for every dataset in the catalog:
- Buy a dataset from the catalog. It is yours to keep, in every export format.
- Subscribe to that dataset's API to turn on live access.
- A unique API key is issued for the subscription, instantly.
- Read the data over REST. GraphQL and direct SQL are planned; this page will link to them once they ship.
Base URL and Authentication
The API lives at a single base URL. Every request carries your key as a Bearer token. See Authentication for the full detail.
# base URL — www is canonical. datlyne.com 301-redirects here,
# and curl drops the Authorization header across that hop.
https://www.datlyne.com/v1
# every request is authenticated
Authorization: Bearer dtl_live_ab3k9x_••••••••
# the first live dataset: GET /v1/:dataset/:table
https://www.datlyne.com/v1/vendor-master-data-general-us/vendorsDatlyne currently ships REST. GraphQL and direct SQL are planned and documented ahead of availability so you can see what is coming. New to the API? Start with the Quickstart.