API Reference

For developers and AI agents calling JustDeploy directly. If you build with a coding AI, you usually don’t need this. Connect it over MCP and it makes these calls for you.

The JustDeploy External API lets you manage databases, tables, and deployments programmatically.

Base URLhttps://api.justdeploy.net
AuthenticationUse Authorization: Bearer with your Access Key and Secret Key joined by a colon, or a personal access token from the MCP sign-in.
Response format{ "resource": { ... } } for single, { "resources": [ ... ] } for lists
Error formatErrors return { "status", "message", "requestId" }. A temporary database or service problem returns 503 with the number of seconds to wait in retryAfter; wait, then send the same request again. If retryAfter is absent, read the message before retrying. When reporting a problem, include requestId, which is also returned as X-Request-Id.
Rate limitUp to 100 requests per second per organization. Every response carries X-RateLimit-Limit and X-RateLimit-Remaining; exceeding the limit returns 429 with the seconds to wait in the error’s retryAfter field, mirrored in a Retry-After header.