ATLAS_
DocsAPIGitHub

Error Handling

Atlas returns errors in a consistent, developer-friendly JSON format. All errors include an error field with a human-readable message.

Error Format

{
  "error": "Description of the error."
}

Common Errors

HTTP StatusMessageCause
400Missing query parameter qRequired parameter not given
400Missing exploration queryRequired path/query missing
404Mission not foundNo mission with given ID
500Internal server errorUnexpected server failure

Example

{
  "error": "Mission not found"
}

Tip: Always check for the error field in responses to handle failures gracefully.