Skip to main content
GET
/
v1
/
{workspace}
/
ws_public_key
List Workspace Public Keys
curl -X GET "https://management-api.suprsend.com/v1/{workspace}/ws_public_key/" \
  --header 'Authorization: ServiceToken <SERVICE_TOKEN>' \
  --header 'Content-Type: application/json'
{
  "meta": {
    "count": 2,
    "limit": 10,
    "offset": 0
  },
  "results": [
    {
      "id": "ws_pubk_exampleId01",
      "api_key": "SS.PUBK.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "name": "web-app",
      "allowed_domains": null,
      "is_secure_mode_enabled": false,
      "is_deleted": false,
      "is_default": false,
      "created_at": "2026-04-21T11:12:23.557360Z",
      "created_by": {
        "name": "System User",
        "email": "org_XXXXXXXXXXXXXXXXXXXXXX@systemuser.suprsend.com"
      },
      "rotated_at": null,
      "rotated_by": null,
      "updated_at": "2026-04-21T11:12:23.557406Z",
      "updated_by": null
    },
    {
      "id": "ws_pubk_exampleId02",
      "api_key": "SS.PUBK.yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
      "name": "default",
      "allowed_domains": null,
      "is_secure_mode_enabled": false,
      "is_deleted": false,
      "is_default": true,
      "created_at": "2024-08-27T10:54:03.512045Z",
      "created_by": null,
      "rotated_at": "2026-04-15T17:59:45.634355Z",
      "rotated_by": {
        "name": "System User",
        "email": "org_XXXXXXXXXXXXXXXXXXXXXX@systemuser.suprsend.com"
      },
      "updated_at": "2026-04-15T17:59:45.634452Z",
      "updated_by": {
        "name": "System User",
        "email": "org_XXXXXXXXXXXXXXXXXXXXXX@systemuser.suprsend.com"
      }
    }
  ]
}

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 public keys.

meta
object

Pagination metadata (when applicable)

results
object[]