# Get company (/docs/api/companies/get-company)

## OpenAPI

```json
{
  "info": {
    "description": "The Circleback public REST API provides programmatic access to your meetings, notes, action items, transcripts, and more. Authenticate every request by sending your API key as a bearer token.",
    "title": "Circleback Public API",
    "version": "1.0.0"
  },
  "openapi": "3.2.0",
  "servers": [
    {
      "url": "https://circleback.ai/api"
    }
  ],
  "components": {
    "securitySchemes": {
      "ApiKeyAuth": {
        "bearerFormat": "cb_<secret>",
        "scheme": "bearer",
        "type": "http"
      }
    }
  },
  "tags": [
    {
      "description": "Look up the companies associated with your meetings.",
      "name": "Companies"
    }
  ],
  "paths": {
    "/company/{domain}": {
      "get": {
        "description": "Returns a company by its domain, including its people and external links.",
        "parameters": [
          {
            "description": "The domain of the company to fetch.",
            "in": "path",
            "name": "domain",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "additionalProperties": false,
                  "example": {
                    "name": "Initech",
                    "avatarUrl": "https://logo.clearbit.com/initech.com",
                    "domain": "initech.com",
                    "externalLinks": [
                      {
                        "url": "https://initech.com",
                        "objectType": "company",
                        "type": "website"
                      }
                    ],
                    "people": [
                      {
                        "id": 1,
                        "title": "Head of Operations",
                        "companyId": 3,
                        "companyName": "Initech",
                        "email": "john@initech.com",
                        "firstName": "John",
                        "lastName": "Appleseed"
                      },
                      {
                        "id": 2,
                        "title": "Office Manager",
                        "companyId": 3,
                        "companyName": "Initech",
                        "email": "samantha@initech.com",
                        "firstName": "Samantha",
                        "lastName": "Grey"
                      }
                    ]
                  },
                  "properties": {
                    "name": {
                      "anyOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "null"
                        }
                      ],
                      "description": "The company's name."
                    },
                    "avatarUrl": {
                      "anyOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "null"
                        }
                      ],
                      "description": "The URL of the company's logo image."
                    },
                    "domain": {
                      "description": "The company's website domain.",
                      "type": "string"
                    },
                    "externalLinks": {
                      "description": "Links to the company on external platforms and connected integrations.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "url": {
                            "description": "The URL of the external resource.",
                            "type": "string"
                          },
                          "objectType": {
                            "description": "Whether the link refers to a person or a company.",
                            "enum": [
                              "person",
                              "company"
                            ],
                            "type": "string"
                          },
                          "type": {
                            "description": "The platform or integration the link points to.",
                            "enum": [
                              "Attio",
                              "HubSpot",
                              "Linear",
                              "Salesforce",
                              "Zoho",
                              "linkedin",
                              "facebook",
                              "instagram",
                              "twitter",
                              "website"
                            ],
                            "type": "string"
                          }
                        },
                        "required": [
                          "type",
                          "objectType",
                          "url"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "people": {
                      "description": "People at the company you have met with.",
                      "items": {
                        "additionalProperties": false,
                        "example": {
                          "id": 1,
                          "title": "Head of Operations",
                          "companyId": 3,
                          "companyName": "Initech",
                          "email": "john@initech.com",
                          "firstName": "John",
                          "lastName": "Appleseed"
                        },
                        "properties": {
                          "id": {
                            "description": "The unique identifier of the person.",
                            "exclusiveMinimum": 0,
                            "type": "number"
                          },
                          "title": {
                            "anyOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "null"
                              }
                            ],
                            "description": "The person's job title."
                          },
                          "companyId": {
                            "anyOf": [
                              {
                                "exclusiveMinimum": 0,
                                "type": "number"
                              },
                              {
                                "type": "null"
                              }
                            ],
                            "description": "The unique identifier of the company the person belongs to."
                          },
                          "companyName": {
                            "anyOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "null"
                              }
                            ],
                            "description": "The name of the company the person belongs to."
                          },
                          "email": {
                            "anyOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "null"
                              }
                            ],
                            "description": "The person's email address."
                          },
                          "firstName": {
                            "anyOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "null"
                              }
                            ],
                            "description": "The person's first name."
                          },
                          "lastName": {
                            "anyOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "null"
                              }
                            ],
                            "description": "The person's last name."
                          }
                        },
                        "required": [
                          "id",
                          "email",
                          "firstName",
                          "lastName",
                          "title",
                          "companyName",
                          "companyId"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    }
                  },
                  "required": [
                    "domain",
                    "people",
                    "externalLinks"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Successful response."
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "additionalProperties": false,
                  "properties": {
                    "code": {
                      "description": "A machine-readable code identifying the type of failure.",
                      "type": "string"
                    },
                    "error": {
                      "description": "A human-readable message explaining why the request failed.",
                      "type": "string"
                    },
                    "issues": {
                      "description": "The field-level validation issues found in an invalid request.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "message": {
                            "description": "A human-readable explanation of the validation failure.",
                            "type": "string"
                          },
                          "path": {
                            "description": "The location of the request field that failed validation.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "path",
                          "message"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "The request failed validation."
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "summary": "Get company",
        "tags": [
          "Companies"
        ]
      }
    }
  }
}
```