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

# /rusprofile/companies/general-court-cases

> Get general-jurisdiction (non-arbitration) court cases for a Russian company by INN, OGRN or internal id. Each case lists the case number and date, status, proceeding type and category, the court and judge, plaintiffs, defendants, representatives and third parties, the case movement events, and the court source link.

**Price:** 10 credits

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



## OpenAPI

````yaml /openapi/company-registries.json post /api/rusprofile/companies/general-court-cases
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/rusprofile/companies/general-court-cases:
    post:
      tags:
        - /rusprofile
      summary: /rusprofile/companies/general-court-cases
      description: >-
        Get general-jurisdiction (non-arbitration) court cases for a Russian
        company by INN, OGRN or internal id. Each case lists the case number and
        date, status, proceeding type and category, the court and judge,
        plaintiffs, defendants, representatives and third parties, the case
        movement events, and the court source link.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Company not found (well-formed INN/OGRN but
        no matching record in the registry)
      operationId: __api_rusprofile_companies_general_court_cases_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RusprofileGeneralCourtCasesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RusprofileGeneralCourtCase'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RusprofileGeneralCourtCasesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - company
        - count
    RusprofileGeneralCourtCase:
      properties:
        '@type':
          type: string
          default: RusprofileGeneralCourtCase
        number:
          anyOf:
            - type: string
            - type: 'null'
        date:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        proceeding_type:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        court:
          anyOf:
            - type: string
            - type: 'null'
        judge:
          anyOf:
            - type: string
            - type: 'null'
        plaintiffs:
          items:
            $ref: '#/components/schemas/RusprofileCourtParty'
          type: array
          default: []
        defendants:
          items:
            $ref: '#/components/schemas/RusprofileCourtParty'
          type: array
          default: []
        representatives:
          items:
            $ref: '#/components/schemas/RusprofileCourtParty'
          type: array
          default: []
        third_parties:
          items:
            $ref: '#/components/schemas/RusprofileCourtParty'
          type: array
          default: []
        events:
          items:
            $ref: '#/components/schemas/RusprofileCourtEvent'
          type: array
          default: []
        source_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RusprofileCourtParty:
      properties:
        '@type':
          type: string
          default: RusprofileCourtParty
        name:
          anyOf:
            - type: string
            - type: 'null'
        id:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    RusprofileCourtEvent:
      properties:
        '@type':
          type: string
          default: RusprofileCourtEvent
        date:
          anyOf:
            - type: string
            - type: 'null'
        event:
          anyOf:
            - type: string
            - 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

````