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

> Get a Tracxn (tracxn.com) startup landscape of a country or region by URL or geography id

**Price:** 10 credits

**⚠️ Common errors:** 412: Geography not found, or the id belongs to a different entity type.



## OpenAPI

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


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Geography not found, or the id belongs to a
        different entity type.
      operationId: __api_tracxn_geographies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TracxnGeographiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TracxnGeography'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TracxnGeographiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        geography:
          type: string
          pattern: ^[A-Za-z0-9_:/.?=&%+-]{6,400}$
      type: object
      required:
        - geography
    TracxnGeography:
      properties:
        '@type':
          type: string
          default: TracxnGeography
        id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        name:
          type: string
        company_count:
          anyOf:
            - type: integer
            - type: 'null'
        funded_company_count:
          anyOf:
            - type: integer
            - type: 'null'
        series_a_plus_count:
          anyOf:
            - type: integer
            - type: 'null'
        series_c_plus_count:
          anyOf:
            - type: integer
            - type: 'null'
        unicorn_count:
          anyOf:
            - type: integer
            - type: 'null'
        ipo_count:
          anyOf:
            - type: integer
            - type: 'null'
        acquisition_count:
          anyOf:
            - type: integer
            - type: 'null'
        total_funding:
          anyOf:
            - type: number
            - type: 'null'
        top_companies:
          items:
            $ref: '#/components/schemas/TracxnLandscapeCompany'
          type: array
          default: []
        recent_funding_rounds:
          items:
            $ref: '#/components/schemas/TracxnLandscapeFundingRound'
          type: array
          default: []
        top_investors:
          items:
            $ref: '#/components/schemas/TracxnTopInvestor'
          type: array
          default: []
        acquisitions:
          items:
            $ref: '#/components/schemas/TracxnAcquisition'
          type: array
          default: []
        ipos:
          items:
            $ref: '#/components/schemas/TracxnIpo'
          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
    TracxnLandscapeCompany:
      properties:
        '@type':
          type: string
          default: TracxnLandscapeCompany
        name:
          type: string
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        founded_year:
          anyOf:
            - type: integer
            - type: 'null'
        stage:
          anyOf:
            - type: string
            - type: 'null'
        total_funding:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - name
    TracxnLandscapeFundingRound:
      properties:
        '@type':
          type: string
          default: TracxnLandscapeFundingRound
        company:
          anyOf:
            - $ref: '#/components/schemas/TracxnEntityRef'
            - type: 'null'
        round_name:
          anyOf:
            - type: string
            - type: 'null'
        funded_at:
          anyOf:
            - type: integer
            - type: 'null'
        investors:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
      type: object
    TracxnTopInvestor:
      properties:
        '@type':
          type: string
          default: TracxnTopInvestor
        name:
          type: string
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        top_portfolio_companies:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
      type: object
      required:
        - name
    TracxnAcquisition:
      properties:
        '@type':
          type: string
          default: TracxnAcquisition
        company:
          anyOf:
            - $ref: '#/components/schemas/TracxnEntityRef'
            - type: 'null'
        acquisition_type:
          anyOf:
            - type: string
            - type: 'null'
        acquired_at:
          anyOf:
            - type: integer
            - type: 'null'
        acquirers:
          items:
            $ref: '#/components/schemas/TracxnEntityRef'
          type: array
          default: []
      type: object
    TracxnIpo:
      properties:
        '@type':
          type: string
          default: TracxnIpo
        company:
          anyOf:
            - $ref: '#/components/schemas/TracxnEntityRef'
            - type: 'null'
        ipo_at:
          anyOf:
            - type: integer
            - type: 'null'
        exchange:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    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
    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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````