Skip to main content
GET
/
api
/
v1
/
companies
/
{companyId}
Get Company
curl --request GET \
  --url https://api.sequenzy.com/api/v1/companies/{companyId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "company": {
    "id": "company_abc123",
    "name": "Acme",
    "status": "ready",
    "websiteUrl": "acme.com",
    "logoUrl": "https://example.com/logo.png",
    "createdAt": "2026-05-01T10:30:00Z",
    "language": "en",
    "emailLocalizationConfig": {
      "enabled": false,
      "locales": []
    }
  }
}

Documentation Index

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

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

Get company details for a company the authenticated key can access.

Request

companyId
string
required
Company ID.
curl "https://api.sequenzy.com/api/v1/companies/company_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "company": {
    "id": "company_abc123",
    "name": "Acme",
    "status": "ready",
    "websiteUrl": "acme.com",
    "logoUrl": "https://example.com/logo.png",
    "createdAt": "2026-05-01T10:30:00Z",
    "language": "en",
    "emailLocalizationConfig": {
      "enabled": false,
      "locales": []
    }
  }
}