> ## Documentation Index
> Fetch the complete documentation index at: https://developer.zeeg.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a CRM Company

> Retrieve the full record for a single CRM company by ID with the Zeeg CRM API, including nested social links and custom attributes

Returns the full record for a single CRM company by its ID.

Social links are returned nested under the `socials` object. Custom attributes are returned under `customAttributes`.


## OpenAPI

````yaml GET /crm/companies/{id}
openapi: 3.0.0
info:
  title: Zeeg Public API
  description: >-
    Zeeg public API documentation.


    ## Authentication

    All endpoints require a Bearer token. You can generate an API token from
    [your Zeeg dashboard](https://app.zeeg.me/account/settings/api-access).


    Each token is scoped to specific permissions (e.g. `events:read`,
    `webhooks:write`). Make sure your token has the required scopes for the
    endpoints you want to use.


    ## Recommended Headers

    We recommend including the `Accept: application/json` header in all API
    requests to ensure you receive JSON responses.
  version: 2.0.0
  x-logo:
    url: https://app.zeeg.me/img/logo-dark.2ca83593.svg
    backgroundColor: '#f7f7f9'
    altText: zeeg
  contact:
    name: Zeeg Support
    email: support@zeeg.me
    url: https://zeeg.me/en/contact
  license:
    name: Proprietary
    url: https://zeeg.me/en/legal/terms
  termsOfService: https://zeeg.me/en/legal/terms
servers:
  - url: https://api.zeeg.me/v2
    description: Production
security:
  - bearer: []
tags:
  - name: Scheduled Events
    description: Management of events scheduled via Zeeg
  - name: Scheduling Pages
    description: Scheduling pages information and management
  - name: Availability Schedule
    description: Read and change availability for users
  - name: Webhooks
    description: Webhooks management
  - name: Notes
    description: Notes for scheduled events
  - name: Workspaces & Teams
    description: Workspace users and team member management
  - name: AI Agent
    description: AI Agent integration endpoints
  - name: Payloads
    description: Webhook payload schemas
  - name: CRM - Objects
    description: >-
      Discover the schema of CRM objects (standard and custom) including all
      attribute definitions
  - name: CRM - Companies
    description: Create, read, update, and delete CRM company records
  - name: CRM - People
    description: Create, read, update, and delete CRM person records
paths:
  /crm/companies/{id}:
    get:
      tags:
        - CRM - Companies
      summary: Get a CRM company
      description: |-
        Returns the full record for a single CRM company by its UUID.

        **Required scope:** `crm:read` or `crm:write`
      operationId: get-crm-company
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: UUID of the company record.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  status:
                    type: integer
                    example: 200
                  company:
                    $ref: '#/components/schemas/CrmCompany'
        '401':
          $ref: '#/components/responses/401'
        '403':
          description: Forbidden — missing scope or CRM not enabled
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
                  status:
                    type: integer
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
                  status:
                    type: integer
              examples:
                Not found:
                  value:
                    success: false
                    message: Company not found.
                    status: 404
      security:
        - bearer: []
components:
  schemas:
    CrmCompany:
      type: object
      description: A CRM company record.
      required:
        - id
        - name
        - domain
        - description
        - websiteUrl
        - primaryLocation
        - industries
        - socials
        - customAttributes
        - createdAt
        - updatedAt
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the company record.
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        name:
          type: string
          description: Display name of the company.
          example: Acme Corp
        domain:
          type: string
          nullable: true
          description: >-
            Primary domain. Unique within the workspace. Used as the matching
            attribute for upsert.
          example: acme.com
        description:
          type: string
          nullable: true
          description: Free-text description of the company.
          example: A global provider of anvils and gadgets.
        websiteUrl:
          type: string
          nullable: true
          description: Company website URL.
          example: https://acme.com
        primaryLocation:
          type: string
          nullable: true
          description: Primary location or address.
          example: Phoenix, AZ
        industries:
          type: array
          description: List of industry IDs assigned to the company.
          items:
            type: string
          example:
            - technology
        socials:
          type: object
          description: Social profile links.
          properties:
            linkedin:
              type: string
              nullable: true
              example: https://linkedin.com/company/acme
            twitter:
              type: string
              nullable: true
              example: null
            facebook:
              type: string
              nullable: true
              example: null
            instagram:
              type: string
              nullable: true
              example: null
        customAttributes:
          type: object
          description: >-
            Key/value pairs for custom attributes defined on the companies
            object.
          additionalProperties: true
          example: {}
        createdAt:
          type: string
          format: date-time
          description: ISO 8601 timestamp when the record was created.
          example: '2025-01-15T09:00:00+00:00'
        updatedAt:
          type: string
          format: date-time
          description: ISO 8601 timestamp when the record was last updated.
          example: '2025-06-01T12:00:00+00:00'
  responses:
    '401':
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                example: Unauthenticated.
          examples:
            Unauthenticated:
              value:
                message: Unauthenticated.
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: ''

````