Masumi Logo

/api-key

Gets api key status

GET
/api-key
token<token>

API key authentication via header (token)

In: header

Query Parameters

limit?number

The number of API keys to return

Default10
Range1 <= value <= 100
cursorToken?string

Used to paginate through the API keys

Lengthlength <= 550

Response Body

curl -X GET "https://loading/./../api/v1/api-key/?limit=10&cursorToken=string"
{
  "data": {
    "ApiKeys": [
      {
        "id": "unique_cuid_v2_of_entry",
        "token": "masumi_payment_api_key_secret",
        "permission": "Admin",
        "usageLimited": true,
        "RemainingUsageCredits": [
          {
            "unit": "",
            "amount": "10000000"
          }
        ],
        "status": "Active",
        "networkLimit": [
          "Mainnet"
        ]
      }
    ]
  },
  "status": "success"
}
Empty
Empty
Empty