Authenticate your API requests

To authenticate your requests to our API, include your Client ID in the “CLIENT-ID” header and Client Secret in "CLIENT-SECRET" header.

"CLIENT-ID: {CLIENT-ID}" // Your Client ID
"CLIENT-SECRET: {CLIENT-SECRET}" // Your Client Secret and determine your environment

Select an environment

Monit exposes two environments for API requests: Sandbox and Production

api.monitpay.com

Sandbox supports all of Production's API endpoints and adds a few more to simulate real world card usage.

Make API requests

Currently we only provide the API without any SDK yet, we'll build the SDK for major programming language soon.

You'll need to use cURL or any http request library on your programming language

Example using cURL

curl --request GET \
     --url https://api.monitpay.com/v1/card \
     --header "Accept: application/json" \
     --header "CLIENT-ID: {Client ID}" \
     --header "CLIENT-SECRET: {Client Secret}"