Getting Started
Get up and running with the Embeden API in three steps.
1
Subscribe to a Dataset
Browse the Embeden Marketplace and subscribe to the licensed dataset you want to query. Each dataset is independently priced per query type.
2
Generate an API Key
In your Developer Console, navigate to API Keys and generate a new key. You can scope keys to specific datasets or grant access to all your subscriptions.
3
Make Your First Query
Use your API key to call the Retrieval or RAG endpoint. Every response includes a source trail showing exactly where the answer came from.
curl -X POST https://embeden.com/api/v1/retrieve \
-H "Authorization: Bearer emb_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"dataset_id": 1, "query": "fire egress requirements"}'