Skip to main content
GET
/
api
/
v1
/
api_key
Get a list of API Keys
curl --request GET \
  --url https://api.paylora.org/api/v1/api_key \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "total": 123,
  "data": [
    {
      "uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
      "user_uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
      "status": "active",
      "key": "api_key_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
      "url": "https://example.com"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
number

default 10

offset
number

default 0

orderType
enum<string>
Available options:
ASC,
DESC
Example:

"DESC"

Response

Paginated list

success
boolean
total
integer
data
object[]