Skip to main content
The DJfindr API uses standard HTTP response codes to indicate the outcome of a request.
  • 2xx — Successful operation
  • 4xx — Client error, often due to incorrect or missing information in the request
  • 5xx — Server-side issue with DJfindr’s systems (uncommon)

Response codes

CodeNameDescription
200OKThe request was successful and everything worked as expected.
400Bad RequestThe request was invalid, often due to missing or incorrect parameters.
401UnauthorizedAuthentication failed — no valid API key was provided.
402Request FailedParameters were valid but the request could not be completed (e.g., a time slot was unavailable).
403ForbiddenThe API key does not have the necessary permissions to perform the requested operation.
404Not FoundThe requested resource could not be located.
409ConflictThe request conflicts with another request (e.g., duplicate use of an idempotent key).
429Too Many RequestsToo many requests in a short period. Implement exponential backoff for retries.
500, 502, 503, 504Server ErrorsInternal server errors indicating an issue with DJfindr’s servers (rare).