WebsiteLog In

Errors

Finmo uses conventional HTTP response codes to indicate the success or failure of an API request. In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, a payin failed, etc.). Codes in the 5xx range indicate an error with Finmo's servers (these are quite rare).

A few 4xx errors that could be handled programmatically (e.g., a card is declined) include an error code that briefly explains the error reported.

HTTP Status Codes Summary

Status CodeStatusDescription
200OKEverything worked as expected.
201CREATEDThe request has been fulfilled and resulted in new resources being created.
400BAD REQUESTThe request was unacceptable, often due to missing a required parameter.
401UNAUTHORIZEDNo valid API key was provided.
402REQUEST FAILEDThe parameters were valid but the request failed.
403FORBIDDENThe API key doesn't have permission to perform the request.
404NOT FOUNDThe requested resource doesn't exist.
406NOT ACCEPTABLEThe parameters were valid but the values were not acceptable.
309CONFLICTThe request conflicts with another request (perhaps due to using the same idempotent key).
429TOO MANY REQUESTSToo many requests hit the API too quickly. We recommend an exponential backoff of your requests.
500, 502SERVER ERRORSSomething went wrong on Finmo's end. (These are quite rare.)
503, 504SERVER ERRORSSomething went wrong on Finmo's end. (These are quite rare.)