Skip to main content
GET
/
v1
/
{workspace}
/
ws_api_key
List Workspace API Keys
curl -X GET "https://management-api.suprsend.com/v1/{workspace}/ws_api_key/" \
  --header 'Authorization: ServiceToken <SERVICE_TOKEN>' \
  --header 'Content-Type: application/json'
{
  "meta": {
    "count": 1,
    "limit": 10,
    "offset": 0
  },
  "results": [
    {
      "id": "ws_apik_exampleId01",
      "masked_api_key": "SS.XXXXXXX*****",
      "is_deleted": false,
      "name": "backend-prod",
      "allowed_domains": [],
      "created_at": "2026-04-21T12:19:00.148846Z",
      "created_by": {
        "name": "System User",
        "email": "org_XXXXXXXXXXXXXXXXXXXXXX@systemuser.suprsend.com"
      },
      "deleted_at": null,
      "deleted_by": null
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.suprsend.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

ServiceToken <token>
string
header
required

You can get Service Token from SuprSend dashboard -> Account Settings -> Service Tokens section.

Path Parameters

workspace
string
required

Workspace slug (e.g. staging, production).

Response

Successfully retrieved API keys.

meta
object

Pagination metadata (when applicable)

results
object[]