# List people (/docs/api/people/list-people)

## 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": {
    "/people": {
      "get": {
        "description": "Returns the people who attend the authenticated user's meetings, ordered by most recent meeting, with optional company and tag filters.",
        "parameters": [
          {
            "description": "Filter people to those associated with any of these company domains.",
            "in": "query",
            "name": "domains",
            "required": false,
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "The maximum number of people to return.",
            "in": "query",
            "name": "limit",
            "required": false,
            "schema": {
              "exclusiveMinimum": 0,
              "type": "integer"
            }
          },
          {
            "description": "Cursor for the next page. Omit for the first page (RFC 8288).",
            "in": "query",
            "name": "cursor",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Filter people to attendees of meetings with these tag IDs.",
            "in": "query",
            "name": "tagIds",
            "required": false,
            "schema": {
              "items": {
                "exclusiveMinimum": 0,
                "type": "integer"
              },
              "type": "array"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "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"
                }
              }
            },
            "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": "List people",
        "tags": [
          "People"
        ]
      }
    }
  }
}
```