> ## 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/investors

> Get a Tracxn (tracxn.com) investor profile by profile URL or profile id

**Price:** 10 credits

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



## OpenAPI

````yaml /openapi/company-startup-intel.json post /api/tracxn/investors
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/investors:
    post:
      tags:
        - /tracxn
      summary: /tracxn/investors
      description: >-
        Get a Tracxn (tracxn.com) investor profile by profile URL or profile id


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Investor not found, or the id belongs to a
        different entity type (company, person, sector).
      operationId: __api_tracxn_investors_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TracxnInvestorsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TracxnInvestor'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TracxnInvestorsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        investor:
          type: string
          pattern: ^[A-Za-z0-9_:/.?=&%+-]{6,400}$
      type: object
      required:
        - investor
    TracxnInvestor:
      properties:
        '@type':
          type: string
          default: TracxnInvestor
        id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        name:
          type: string
        investor_type:
          type: string
        founded_year:
          anyOf:
            - type: integer
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        portfolio_company_count:
          anyOf:
            - type: integer
            - type: 'null'
        new_investment_count:
          anyOf:
            - type: integer
            - type: 'null'
        unicorn_count:
          anyOf:
            - type: integer
            - type: 'null'
        soonicorn_count:
          anyOf:
            - type: integer
            - type: 'null'
        ipo_count:
          anyOf:
            - type: integer
            - type: 'null'
        acquisition_count:
          anyOf:
            - type: integer
            - type: 'null'
        co_investor_count:
          anyOf:
            - type: integer
            - type: 'null'
        team_size:
          anyOf:
            - type: integer
            - type: 'null'
        partner_count:
          anyOf:
            - type: integer
            - type: 'null'
        rounds_of_entry:
          items:
            type: string
          type: array
          default: []
        deal_types:
          items:
            type: string
          type: array
          default: []
        portfolio_companies:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        portfolio_soonicorns:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        portfolio_sectors:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        portfolio_locations:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        team_members:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        top_investments:
          items:
            $ref: '#/components/schemas/TracxnCompanyCard'
          type: array
          default: []
        investments_by_year:
          items:
            $ref: '#/components/schemas/TracxnInvestorYearTrend'
          type: array
          default: []
        investments_by_stage:
          items:
            $ref: '#/components/schemas/TracxnNamedCount'
          type: array
          default: []
        investments_by_sector:
          items:
            $ref: '#/components/schemas/TracxnNamedCount'
          type: array
          default: []
        investments_by_geography:
          items:
            $ref: '#/components/schemas/TracxnNamedCount'
          type: array
          default: []
        recent_investments:
          items:
            $ref: '#/components/schemas/TracxnInvestment'
          type: array
          default: []
        portfolio_unicorns:
          items:
            $ref: '#/components/schemas/TracxnPortfolioUnicorn'
          type: array
          default: []
        portfolio_ipos:
          items:
            $ref: '#/components/schemas/TracxnPortfolioExit'
          type: array
          default: []
        portfolio_acquisitions:
          items:
            $ref: '#/components/schemas/TracxnPortfolioExit'
          type: array
          default: []
        team:
          items:
            $ref: '#/components/schemas/TracxnTeamMember'
          type: array
          default: []
        co_investors:
          items:
            $ref: '#/components/schemas/TracxnCoInvestorGroup'
          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
        - investor_type
    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
    TracxnCompanyCard:
      properties:
        '@type':
          type: string
          default: TracxnCompanyCard
        name:
          type: string
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        rank:
          anyOf:
            - type: integer
            - type: 'null'
        unicorn_note:
          anyOf:
            - type: string
            - type: 'null'
        founded_year:
          anyOf:
            - type: integer
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - $ref: '#/components/schemas/TracxnEntityRef'
            - type: 'null'
        primary_sector:
          anyOf:
            - type: string
            - type: 'null'
        highlight:
          anyOf:
            - type: string
            - type: 'null'
        time_to_unicorn:
          anyOf:
            - type: string
            - type: 'null'
        stage:
          anyOf:
            - type: string
            - type: 'null'
        total_funding:
          anyOf:
            - type: number
            - type: 'null'
        latest_round:
          anyOf:
            - $ref: '#/components/schemas/TracxnLatestRound'
            - type: 'null'
        investors:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        annual_revenue:
          anyOf:
            - type: string
            - type: 'null'
        employee_count:
          anyOf:
            - type: integer
            - type: 'null'
        tracxn_score:
          anyOf:
            - type: integer
            - type: 'null'
        competitor_rank:
          anyOf:
            - type: integer
            - type: 'null'
        competitor_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    TracxnInvestorYearTrend:
      properties:
        '@type':
          type: string
          default: TracxnInvestorYearTrend
        year:
          type: string
        first_round_count:
          anyOf:
            - type: integer
            - type: 'null'
        follow_on_count:
          anyOf:
            - type: integer
            - type: 'null'
        total_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - year
    TracxnNamedCount:
      properties:
        '@type':
          type: string
          default: TracxnNamedCount
        name:
          type: string
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    TracxnInvestment:
      properties:
        '@type':
          type: string
          default: TracxnInvestment
        funded_at:
          anyOf:
            - type: integer
            - type: 'null'
        company:
          anyOf:
            - $ref: '#/components/schemas/TracxnEntityRef'
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        round_name:
          anyOf:
            - type: string
            - type: 'null'
        co_investors:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
      type: object
    TracxnPortfolioUnicorn:
      properties:
        '@type':
          type: string
          default: TracxnPortfolioUnicorn
        name:
          type: string
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        founded_year:
          anyOf:
            - type: integer
            - type: 'null'
        sectors:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        location:
          anyOf:
            - type: string
            - type: 'null'
        stage:
          anyOf:
            - type: string
            - type: 'null'
        tracxn_score:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    TracxnPortfolioExit:
      properties:
        '@type':
          type: string
          default: TracxnPortfolioExit
        name:
          type: string
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        exited_at:
          anyOf:
            - type: integer
            - type: 'null'
        first_invested_at:
          anyOf:
            - type: integer
            - type: 'null'
        first_round:
          anyOf:
            - type: string
            - type: 'null'
        total_funding:
          anyOf:
            - type: number
            - type: 'null'
        founded_year:
          anyOf:
            - type: integer
            - type: 'null'
        acquirers:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
      type: object
      required:
        - name
    TracxnTeamMember:
      properties:
        '@type':
          type: string
          default: TracxnTeamMember
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        designation:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        board_memberships:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
      type: object
      required:
        - name
    TracxnCoInvestorGroup:
      properties:
        '@type':
          type: string
          default: TracxnCoInvestorGroup
        relation:
          type: string
        investor_count:
          anyOf:
            - type: integer
            - type: 'null'
        investors:
          items:
            $ref: '#/components/schemas/TracxnCoInvestor'
          type: array
          default: []
      type: object
      required:
        - relation
    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
    TracxnLatestRound:
      properties:
        '@type':
          type: string
          default: TracxnLatestRound
        round_name:
          anyOf:
            - type: string
            - type: 'null'
        funded_at:
          anyOf:
            - type: integer
            - type: 'null'
        amount:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    TracxnCoInvestor:
      properties:
        '@type':
          type: string
          default: TracxnCoInvestor
        name:
          type: string
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        company_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````