HTTP Status Codes
| Status Code | Meaning | Description |
|---|---|---|
200 | OK | The request was successful. The response body contains the requested data. |
400 | Bad Request | The request contains invalid parameters or is malformed. |
401 | Unauthorized | Authentication failed. The API key is missing, invalid, or expired. |
404 | Not Found | The requested resource does not exist. |
429 | Too Many Requests | You exceeded a burst throttle or a data-point cap. See Rate Limits. |
500 | Internal Server Error | An unexpected error occurred on the server. |
Error Response Format
When an error occurs, the API returns a JSON object with a message describing the problem.Detailed Status Code Reference
200 OK
The request succeeded. For list endpoints, the response is a JSON array. For single-resource endpoints, the response is a JSON object.400 Bad Request
The request was rejected because one or more parameters are invalid. Check themessage field for specifics.
Common causes:
- An invalid
sport_idvalue - A malformed date format (expected
YYYY-MM-DD) - An unrecognized query parameter value
401 Unauthorized
Authentication failed. The API could not verify your identity. Common causes:- No API key was provided
- The API key is invalid or has been revoked
- The
X-TheRundown-Keyheader is missing or malformed
404 Not Found
The requested resource does not exist. This typically means the event ID, sport ID, or other identifier in the URL path does not match any record. Common causes:- An event ID that does not exist or has been archived
- A URL path that is misspelled or references a deprecated endpoint
429 Too Many Requests
TheRundown uses429 for more than one condition. Read the response body and headers before deciding whether to retry immediately.
- Read
Retry-Afterfirst. - Inspect
X-Datapoints-Used,X-Datapoints-Remaining,X-Datapoints-Reset,X-Tier, andX-Rate-Limit. - If the body says
Rate limit exceeded, retry after a short backoff. - If the body says
Daily data point limit reachedorMonthly data point limit reached, this is a usage-window issue, not a one-second throttle. Retrying immediately will not help.
500 Internal Server Error
An unexpected error occurred on the server side. This is not caused by your request.The 0.0001 Sentinel Value
The value
0.0001 appearing in odds or line fields is not an error. It is a sentinel value indicating that a line is currently unavailable or has not yet been posted by the sportsbook.0.0001 rather than null or omitting the field. This ensures a consistent numeric type across all responses and makes it straightforward to filter in your code.
How to Handle 0.0001
Filter out the sentinel value when displaying or processing lines. Treat any field equal to0.0001 as “not available.”
Troubleshooting Checklist
If you are encountering errors, work through this checklist:- Check your API key. Is it present in the request? Is it valid? Try the key against a public endpoint like
/v2/sports. - Inspect the full response. Read the
messagefield in the error response for specific guidance. - Review the request URL. Ensure the path, query parameters, and date formats are correct.
- Check your billing and throttle headers. If you are getting
429responses, inspectRetry-After,X-Datapoints-Remaining,X-Datapoints-Reset, andX-Rate-Limit. - Retry with backoff for 5xx errors. Server errors are usually transient. Retry after a short delay.
- Contact support. If the issue persists, email [email protected] with the request URL, response body, and timestamp.
Retryable vs Non-Retryable Errors
Not all errors should be retried. Retrying a401 won’t fix a bad API key, but a 502 may resolve on the next attempt.
| Status | Retryable? | Action |
|---|---|---|
400 | No | Fix the request parameters |
401 | No | Check your API key |
404 | No | Verify the resource ID or URL path |
429 | Yes, sometimes | Respect Retry-After; do not blindly retry cap-based 429s |
500 | Yes | Retry with exponential backoff |
502 | Yes | Retry with exponential backoff |
503 | Yes | Retry with exponential backoff |
Retry Strategy
For retryable errors, use exponential backoff with jitter to avoid thundering-herd problems when the server recovers. The pattern: waitbase * 2^attempt seconds, add a random jitter, and cap the maximum delay. Three retries is usually sufficient — if the error persists after that, log it and move on.
Complete Error-Handling Wrapper
This wrapper combines retry logic with sentinel value filtering into a single utility you can use across your integration.For strategies to reduce the number of API calls you make (and the errors you encounter), see the Efficient Polling guide and Rate Limits.