The Databox API allows you to integrate Databox with external systems, automate data ingestion, and extend platform functionality. It follows REST conventions with resource-oriented URLs, JSON request/response bodies, and standard HTTP methods/status codes.
Databox API (v1)
Download OpenAPI description
Languages
Servers
Production server
https://api.databox.com/
Request
Validates the API key supplied in the x-api-key
header.
Use this endpoint as a setup/health check. Integration partners can call it to confirm a customer's key before enabling data ingestion or completing account linking.
- 200 OK: Key is valid.
- 401 Unauthorized: Key is missing or invalid (standard error envelope).
Security
x-api-key
- Production server
https://api.databox.com/v1/auth/validate-key
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.databox.com/v1/auth/validate-key \
-H 'x-api-key: YOUR_API_KEY_HERE'
Response
application/json
{ "requestId": "b0eac937-c25c-47a5-bb7e-552f6b860458", "status": "success" }