Check Slug Availability
Check whether an agent slug is available for use.
This endpoint is public and does not require authentication.
Path Parameters
The slug to check. Must be URL-safe (lowercase alphanumeric and hyphens).
Response
Whether the slug is available.
Whether the slug is a reserved word.
Example
curl https://api.ama2.me/api/v1/auth/check-slug/my-agent
{
"available": true,
"reserved": false
}