For the complete documentation index, see llms.txt. This page is also available as Markdown.

Authentication

To use the API, merchants must obtain an API key from their personal account. You can retrieve your API key by logging in at: https://dashboard.omypayments.com/. Without a valid API key, all requests will be rejected.

Include the API key in the header of each request as follows:

curl -X GET -H "apiKey: yourApiKey" https://api.omypayments.com/

If the API key is missing, the server will respond with:

{
    "success": false,
    "message": "Missing api key",
    "statusCode": 0
}

Last updated