Skip to main content
GET
/
v1
/
organization
/
app-keys
cURL
curl --request GET \
  --url https://api.buildwithchirp.com/v1/organization/app-keys \
  --header 'Authorization: Bearer <token>'
{
  "keys": [
    {
      "id": "key_app_2DbBs7GWhGvVNJGrDXr5RG0mBWI",
      "name": "<string>",
      "keyPreview": "sk_live_app_****",
      "appId": "app_2DbBs7GWhGvVNJGrDXr5RG0mBWI",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "totalCount": 10
}

Authorizations

Authorization
string
header
required

Admin API key (format: sk_admin_*) for organization-level operations

Query Parameters

limit
string
offset
string
appId
string

Unique identifier for a App. Format: app_[test_]{ksuid}

Example:

"app_2DbBs7GWhGvVNJGrDXr5RG0mBWI"

Response

List all app keys

keys
object[]
required
totalCount
number
required

Total number of app keys

Example:

10