Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create a company workspace
cURL
curl --request POST \ --url https://api.sequenzy.com/api/v1/companies \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "domain": "<string>", "name": "<string>" } '
{ "success": true, "company": { "id": "company_abc123", "name": "Acme", "status": "processing", "websiteUrl": "acme.com" }, "message": "Company created. Processing your website to extract brand information. This typically takes 30-60 seconds." }
curl -X POST "https://api.sequenzy.com/api/v1/companies" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"domain": "acme.com", "name": "Acme"}'