Skip to main content
GET
/
v1
/
organization
/
apps
/
check-slug
cURL
curl --request GET \
  --url https://api.buildwithchirp.com/v1/organization/apps/check-slug \
  --header 'Authorization: Bearer <token>'
{
  "available": true,
  "slug": "my-app"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

slug
string
required

Slug to check availability for

Minimum string length: 1
Example:

"my-app"

Response

Slug availability result

available
boolean
required

Whether the slug is available

Example:

true

slug
string
required

The slug that was checked

Example:

"my-app"