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

# /tracxn/people

> Get a Tracxn (tracxn.com) person profile (founder, angel investor, board member) by URL or id

**Price:** 10 credits

**⚠️ Common errors:** 412: Person not found, or the id belongs to a different entity type (company, investor, sector).



## OpenAPI

````yaml /openapi/company-startup-intel.json post /api/tracxn/people
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/tracxn/people:
    post:
      tags:
        - /tracxn
      summary: /tracxn/people
      description: >-
        Get a Tracxn (tracxn.com) person profile (founder, angel investor, board
        member) by URL or id


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Person not found, or the id belongs to a
        different entity type (company, investor, sector).
      operationId: __api_tracxn_people_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TracxnPeoplePayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TracxnPerson'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TracxnPeoplePayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        person:
          type: string
          pattern: ^[A-Za-z0-9_:/.?=&%+-]{6,400}$
      type: object
      required:
        - person
    TracxnPerson:
      properties:
        '@type':
          type: string
          default: TracxnPerson
        id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        name:
          type: string
        founded_companies:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        board_memberships:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        investment_portfolio:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        investment_sectors:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        investment_locations:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        investments:
          items:
            $ref: '#/components/schemas/TracxnPersonInvestment'
          type: array
          default: []
        portfolio_exits:
          items:
            $ref: '#/components/schemas/TracxnPersonCompany'
          type: array
          default: []
        founded:
          items:
            $ref: '#/components/schemas/TracxnPersonCompany'
          type: array
          default: []
        board:
          items:
            $ref: '#/components/schemas/TracxnPersonCompany'
          type: array
          default: []
        news:
          items:
            $ref: '#/components/schemas/TracxnNewsItem'
          type: array
          default: []
        faqs:
          items:
            $ref: '#/components/schemas/TracxnFaq'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    TracxnEntityRef:
      properties:
        '@type':
          type: string
          default: TracxnEntityRef
        name:
          type: string
        id:
          anyOf:
            - type: string
            - type: 'null'
        namespace:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    TracxnPersonInvestment:
      properties:
        '@type':
          type: string
          default: TracxnPersonInvestment
        funded_at:
          anyOf:
            - type: integer
            - type: 'null'
        company:
          anyOf:
            - $ref: '#/components/schemas/TracxnEntityRef'
            - type: 'null'
        round_name:
          anyOf:
            - type: string
            - type: 'null'
        amount:
          anyOf:
            - type: number
            - type: 'null'
        co_investors:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
      type: object
    TracxnPersonCompany:
      properties:
        '@type':
          type: string
          default: TracxnPersonCompany
        name:
          type: string
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        total_funding:
          anyOf:
            - type: number
            - type: 'null'
        founded_year:
          anyOf:
            - type: integer
            - type: 'null'
        stage:
          anyOf:
            - type: string
            - type: 'null'
        exit_type:
          anyOf:
            - type: string
            - type: 'null'
        exited_at:
          anyOf:
            - type: integer
            - type: 'null'
        membership_status:
          anyOf:
            - type: string
            - type: 'null'
        appointed_at:
          anyOf:
            - type: integer
            - type: 'null'
        ceased_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    TracxnNewsItem:
      properties:
        '@type':
          type: string
          default: TracxnNewsItem
        news_title:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        publisher:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        related:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
      type: object
      required:
        - news_title
    TracxnFaq:
      properties:
        '@type':
          type: string
          default: TracxnFaq
        question:
          type: string
        answer:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - question
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````