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

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

**Price:** 20 credits

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



## OpenAPI

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


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Company not found, or the id belongs to a
        different entity type (investor, person, sector).
      operationId: __api_tracxn_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TracxnCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TracxnCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TracxnCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          pattern: ^[A-Za-z0-9_:/.?=&%+-]{6,400}$
      type: object
      required:
        - company
    TracxnCompany:
      properties:
        '@type':
          type: string
          default: TracxnCompany
        id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        website:
          anyOf:
            - type: string
            - type: 'null'
        registered_address:
          anyOf:
            - type: string
            - type: 'null'
        parent_company:
          anyOf:
            - $ref: '#/components/schemas/TracxnParentCompany'
            - type: 'null'
        social_urls:
          items:
            type: string
          type: array
          default: []
        founded_year:
          anyOf:
            - type: integer
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - $ref: '#/components/schemas/TracxnEntityRef'
            - type: 'null'
        stage:
          anyOf:
            - type: string
            - type: 'null'
        sectors:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        business_models:
          items:
            type: string
          type: array
          default: []
        total_funding:
          anyOf:
            - type: number
            - type: 'null'
        funding_round_count:
          anyOf:
            - type: integer
            - type: 'null'
        latest_round:
          anyOf:
            - $ref: '#/components/schemas/TracxnLatestRound'
            - type: 'null'
        valuation:
          anyOf:
            - type: number
            - type: 'null'
        valuation_at:
          anyOf:
            - type: integer
            - type: 'null'
        investors:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        annual_revenue:
          anyOf:
            - type: string
            - type: 'null'
        annual_revenue_at:
          anyOf:
            - type: integer
            - type: 'null'
        employee_count:
          anyOf:
            - type: integer
            - type: 'null'
        employee_count_at:
          anyOf:
            - type: integer
            - type: 'null'
        competitor_rank:
          anyOf:
            - type: integer
            - type: 'null'
        competitor_count:
          anyOf:
            - type: integer
            - type: 'null'
        exit_type:
          anyOf:
            - type: string
            - type: 'null'
        acquired_by:
          anyOf:
            - $ref: '#/components/schemas/TracxnEntityRef'
            - type: 'null'
        acquired_at:
          anyOf:
            - type: integer
            - type: 'null'
        legal_entities:
          items:
            $ref: '#/components/schemas/TracxnCompanyLegalEntity'
          type: array
          default: []
        funding_rounds:
          items:
            $ref: '#/components/schemas/TracxnFundingRound'
          type: array
          default: []
        cap_table:
          items:
            $ref: '#/components/schemas/TracxnShareholderGroup'
          type: array
          default: []
        board:
          items:
            $ref: '#/components/schemas/TracxnBoardMember'
          type: array
          default: []
        competitors:
          items:
            $ref: '#/components/schemas/TracxnCompetitor'
          type: array
          default: []
        deals:
          items:
            $ref: '#/components/schemas/TracxnCompanyDeal'
          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
    TracxnParentCompany:
      properties:
        '@type':
          type: string
          default: TracxnParentCompany
        id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
      type: object
      required:
        - id
        - url
    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
    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
    TracxnCompanyLegalEntity:
      properties:
        '@type':
          type: string
          default: TracxnCompanyLegalEntity
        name:
          type: string
        cin:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        id:
          anyOf:
            - type: string
            - type: 'null'
        incorporated_at:
          anyOf:
            - type: integer
            - type: 'null'
        revenue:
          anyOf:
            - type: string
            - type: 'null'
        employee_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    TracxnFundingRound:
      properties:
        '@type':
          type: string
          default: TracxnFundingRound
        funded_at:
          anyOf:
            - type: integer
            - type: 'null'
        amount:
          anyOf:
            - type: number
            - type: 'null'
        round_name:
          anyOf:
            - type: string
            - type: 'null'
        post_money_valuation:
          anyOf:
            - type: number
            - type: 'null'
        revenue_multiple:
          anyOf:
            - type: string
            - type: 'null'
        lead_investors:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        other_investors:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
      type: object
    TracxnShareholderGroup:
      properties:
        '@type':
          type: string
          default: TracxnShareholderGroup
        group_name:
          type: string
        holding_percent:
          anyOf:
            - type: number
            - type: 'null'
        net_worth:
          anyOf:
            - type: string
            - type: 'null'
        shareholders:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
      type: object
      required:
        - group_name
    TracxnBoardMember:
      properties:
        '@type':
          type: string
          default: TracxnBoardMember
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        id:
          anyOf:
            - type: string
            - type: 'null'
        member_type:
          anyOf:
            - type: string
            - type: 'null'
        representing:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        duration:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    TracxnCompetitor:
      properties:
        '@type':
          type: string
          default: TracxnCompetitor
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        id:
          anyOf:
            - type: string
            - type: 'null'
        rank:
          anyOf:
            - type: integer
            - type: 'null'
        founded_year:
          anyOf:
            - type: integer
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        stage:
          anyOf:
            - type: string
            - type: 'null'
        total_funding:
          anyOf:
            - type: number
            - type: 'null'
        investors:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
        tracxn_score:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    TracxnCompanyDeal:
      properties:
        '@type':
          type: string
          default: TracxnCompanyDeal
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        id:
          anyOf:
            - type: string
            - type: 'null'
        deal_at:
          anyOf:
            - type: integer
            - type: 'null'
        deal_type:
          anyOf:
            - type: string
            - type: 'null'
        founded_year:
          anyOf:
            - type: integer
            - type: 'null'
        location:
          anyOf:
            - type: string
            - 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

````