/api-key
Gets api key status
token<token>
API key authentication via header (token)
In: header
Query Parameters
limit?number
The number of API keys to return
Default
10
Range
1 <= value <= 100
cursorToken?string
Used to paginate through the API keys
Length
length <= 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