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

> Get enforcement proceedings (ФССП / Federal Bailiffs Service) for a Russian company by INN, OGRN or internal id. Each proceeding lists the case number and date, status, claim amount and outstanding balance, the enforcement subject, closing reason, the underlying document, the creditor (with Rusprofile id) and the bailiff department.

**Price:** 5 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/enforcements
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/enforcements:
    post:
      tags:
        - /rusprofile
      summary: /rusprofile/companies/enforcements
      description: >-
        Get enforcement proceedings (ФССП / Federal Bailiffs Service) for a
        Russian company by INN, OGRN or internal id. Each proceeding lists the
        case number and date, status, claim amount and outstanding balance, the
        enforcement subject, closing reason, the underlying document, the
        creditor (with Rusprofile id) and the bailiff department.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Company not found (well-formed INN/OGRN but
        no matching record in the registry)
      operationId: __api_rusprofile_companies_enforcements_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RusprofileEnforcementsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RusprofileEnforcement'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RusprofileEnforcementsPayload:
      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
    RusprofileEnforcement:
      properties:
        '@type':
          type: string
          default: RusprofileEnforcement
        number:
          anyOf:
            - type: string
            - type: 'null'
        date:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        amount:
          anyOf:
            - type: integer
            - type: 'null'
        balance:
          anyOf:
            - type: integer
            - type: 'null'
        subject:
          anyOf:
            - type: string
            - type: 'null'
        reason:
          anyOf:
            - type: string
            - type: 'null'
        document:
          anyOf:
            - type: string
            - type: 'null'
        creditor_name:
          anyOf:
            - type: string
            - type: 'null'
        creditor_id:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      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

````