> ## 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.

# /listorg/persons

> Get a Russian individual (sole proprietor / person) from the List-Org registry by INN or internal id: name, INN, sole-proprietor (EGRIP) registrations with status, and affiliations — the companies where the person is a director and the companies where the person is a founder.

**Price:** 5 credits

**⚠️ Common errors:** 412: Person not found (well-formed INN but no matching record in the registry)



## OpenAPI

````yaml /openapi/company-registries.json post /api/listorg/persons
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/listorg/persons:
    post:
      tags:
        - /listorg
      summary: /listorg/persons
      description: >-
        Get a Russian individual (sole proprietor / person) from the List-Org
        registry by INN or internal id: name, INN, sole-proprietor (EGRIP)
        registrations with status, and affiliations — the companies where the
        person is a director and the companies where the person is a founder.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Person not found (well-formed INN but no
        matching record in the registry)
      operationId: __api_listorg_persons_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ListorgPersonsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ListorgPerson'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ListorgPersonsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        person:
          type: string
          minLength: 1
      type: object
      required:
        - person
    ListorgPerson:
      properties:
        '@type':
          type: string
          default: ListorgPerson
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        inn:
          anyOf:
            - type: string
            - type: 'null'
        entrepreneurships:
          items:
            $ref: '#/components/schemas/ListorgEntrepreneurship'
          type: array
          default: []
        director_of:
          items:
            $ref: '#/components/schemas/ListorgAffiliation'
          type: array
          default: []
        founder_of:
          items:
            $ref: '#/components/schemas/ListorgAffiliation'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ListorgEntrepreneurship:
      properties:
        '@type':
          type: string
          default: ListorgEntrepreneurship
        ogrn:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        is_active:
          anyOf:
            - type: boolean
            - type: 'null'
        registered_at:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ListorgAffiliation:
      properties:
        '@type':
          type: string
          default: ListorgAffiliation
        company_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        full_name:
          anyOf:
            - type: string
            - type: 'null'
        inn:
          anyOf:
            - type: string
            - type: 'null'
        ogrn:
          anyOf:
            - type: string
            - type: 'null'
        position:
          anyOf:
            - type: string
            - type: 'null'
        is_active:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    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

````