Skip to main content
GET
/
namespaces
/
slug-availability
/
{slug}
Check Slug Availability
curl --request GET \
  --url https://api.example.com/namespaces/slug-availability/{slug}
{
  "available": true,
  "slug": "<string>"
}

Documentation Index

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

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

Check if a namespace slug is available before creating a namespace. Slugs must be unique across all namespaces and follow URL-friendly formatting rules (lowercase alphanumeric characters, hyphens, and underscores).

Path Parameters

slug
string
required

Response

Successful Response

Response for slug availability check.

available
boolean
required

Whether the slug is available for use.

slug
string
required

The slug that was checked.