Skip to main content
GET
/
external
/
v1
/
company
Company Info
curl --request GET \
  --url https://api.example.com/external/v1/company/

Get Company Information

Retrieve basic information about your company as configured in Firstwork.

Endpoint

GET /external/v1/company/

Example Request

curl -X GET "https://your-instance.firstwork.com/external/v1/company/" \
  -H "Authorization: Bearer YOUR_API_KEY"

Example Response

{
  "status": "success",
  "data": {
    "id": "company-uuid",
    "name": "Acme Corporation",
    "timezone": "America/Los_Angeles",
    "locale": "en-US",
    "legal_entities": [
      {
        "id": "entity-1-uuid",
        "name": "Acme Corp - US"
      },
      {
        "id": "entity-2-uuid",
        "name": "Acme Corp - UK"
      }
    ]
  }
}