Skip to main content
The Document Understanding API provides REST endpoints for document processing. Use the API for non-Python integrations or when you need direct control over HTTP requests. Browse the full REST API in the Dex API tab. Key endpoint groups:
GroupDescription
ProjectsCreate, list, and manage projects
FilesUpload files, get download URLs, stream content
ParseCreate parse jobs, list results, rechunk
ExtractCreate extract jobs, list extractions
Vector StoresCreate stores, add files, search
JobsGet job status and monitor progress

Authentication

All requests require:
  • x-api-key: Your SGP API key
  • x-selected-account-id: Your SGP account ID
curl -X GET "https://dex.sgp.scale.com/v1/projects" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "x-selected-account-id: YOUR_ACCOUNT_ID"

Base URL

EnvironmentBase URL
Productionhttps://dex.sgp.scale.com

Next Steps