Skip to main content
GET
/
v4
/
account
/
api-keys
List API keys
curl --request GET \
  --url https://api.proxyscrape.com/v4/account/api-keys \
  --header 'api-token: <api-key>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "permissions": [
      "<string>"
    ],
    "allowed_subaccounts": [
      "<string>"
    ],
    "allowed_ips": [
      "<string>"
    ],
    "expires_at": 123,
    "is_active": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

api-token
string
header
required

API key. Create and manage keys at /v4/account/api-keys or in the dashboard.

Response

200 - application/json

List of API keys (no secrets)

id
string<uuid>
name
string
permissions
string[]
allowed_subaccounts
string[]
allowed_ips
string[]
expires_at
integer | null
is_active
boolean
created_at
string<date-time>
updated_at
string<date-time>