Errors

Wundaflow uses standard HTTP response codes to indicate success or failure of an API request. Generally, codes in the 2xx range indicate success, codes in 4xx range indicate an error that failed due to the request params, and codes in the 5xx range indicate an error with Wundaflow's platform.

Most 4xx error codes will also return a JSON response body that indicates the exact issue with the request.

HTTP status
Summary

200 - OK

Everything was OK.

400 - Bad Request

Request was not accepted, often due to missing or incorrect params.

401 - Unauthorized

Missing, revoked or invalid API key.

402 - Request Failed

The params provided were valid but the request failed.

403 - Forbidden

API key provided does not have permission to perform the requested action.

404 - Not Found

The requested resource could not be found.

409 - Conflict

The request conflicts with another request or the resource is not in the correct state.

429 - Too Many Requests

You are being rate limited, slow down your requests or ask for a rate increase.

500 - Server Error

Something is wrong on Wundaflow's side. Try the request again or contact support.

Last updated