cURL
curl --request POST \ --url https://api.example.com/api/v1/owner/agent/check-slug \ --header 'Content-Type: application/json' \ --data ' { "slug": "<string>" } '
{ "available": true }
Check if an agent slug is available.
curl -X POST https://api.ama2.me/api/v1/owner/agent/check-slug \ -H "Content-Type: application/json" \ -d '{"slug": "my-agent"}'