DEVELOPERS — API
API reference (Preview).
The Atlas API reference is in Early Access. Endpoints below are conceptual examples — not live endpoints. They are clearly marked as Preview.
Early AccessPreview
EXAMPLE ENDPOINTS
Conceptual surface.
These endpoints illustrate the shape of the planned Atlas API. They are not live — do not integrate against them in production.
Endpoints
Example — Preview (not a live endpoint)- POST
/v1/chatSend a chat completion request (Preview — not a live endpoint). - POST
/v1/documents/analyzeAnalyse a document and return structured insights (Preview — not a live endpoint). - POST
/v1/automate/workflows/runTrigger a workflow run in Atlas Automate (Preview — not a live endpoint). - GET
/v1/data/datasets/:idRetrieve a dataset by ID (Preview — not a live endpoint).
Example request
Example — Preview (not a live endpoint)curl https://api.atlasdigitalsystems.co/v1/chat \
-H "Authorization: Bearer $ATLAS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "atlas-business",
"messages": [
{ "role": "user", "content": "Summarize this document" }
]
}'Example response
Example — Preview (not a live endpoint){
"id": "resp_01HABCDEF",
"object": "chat.completion",
"created": 1737000000,
"model": "atlas-business",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "Summary: …"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 12,
"completion_tokens": 48,
"total_tokens": 60
}
}Build with Atlas.
Read the documentation or explore integrations. To request Early Access when slots open, contact the developers team.