# Get person (/docs/api/people/get-person)

## 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 people who attend your meetings.",
      "name": "People"
    }
  ],
  "paths": {
    "/person/{profileId}": {
      "get": {
        "description": "Returns a person by their profile ID, including their profile details and external links.",
        "parameters": [
          {
            "description": "The unique identifier of the person's profile.",
            "in": "path",
            "name": "profileId",
            "required": true,
            "schema": {
              "exclusiveMinimum": 0,
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "additionalProperties": false,
                  "example": {
                    "id": 1,
                    "title": "Head of Operations",
                    "companyId": 3,
                    "companyName": "Initech",
                    "email": "john@initech.com",
                    "firstName": "John",
                    "lastName": "Appleseed",
                    "externalLinks": [
                      {
                        "url": "https://www.linkedin.com/in/john-appleseed",
                        "objectType": "person",
                        "type": "linkedin"
                      }
                    ]
                  },
                  "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."
                    },
                    "externalLinks": {
                      "description": "Links to the person 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"
                    }
                  },
                  "required": [
                    "id",
                    "email",
                    "firstName",
                    "lastName",
                    "title",
                    "companyName",
                    "companyId",
                    "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 person",
        "tags": [
          "People"
        ]
      }
    }
  }
}
```