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

# /zachestnyibiznes/companies/significant-facts

> Get the Fedresurs significant-facts summary of a Russian company by INN or OGRN: total number of published messages and a breakdown by message type (bankruptcy intentions, pledges, guarantees, leasing contracts and more) with their counts.

**Price:** 10 credits

**⚠️ Common errors:** 412: Company not found or has no significant-facts data



## OpenAPI

````yaml /openapi/company-registries.json post /api/zachestnyibiznes/companies/significant-facts
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/zachestnyibiznes/companies/significant-facts:
    post:
      tags:
        - /zachestnyibiznes
      summary: /zachestnyibiznes/companies/significant-facts
      description: >-
        Get the Fedresurs significant-facts summary of a Russian company by INN
        or OGRN: total number of published messages and a breakdown by message
        type (bankruptcy intentions, pledges, guarantees, leasing contracts and
        more) with their counts.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Company not found or has no significant-facts
        data
      operationId: __api_zachestnyibiznes_companies_significant_facts_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ZachestnyibiznesSignificantFactsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ZachestnyibiznesSignificantFacts'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ZachestnyibiznesSignificantFactsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
      type: object
      required:
        - company
    ZachestnyibiznesSignificantFacts:
      properties:
        '@type':
          type: string
          default: ZachestnyibiznesSignificantFacts
        id:
          type: string
        url:
          type: string
        total_count:
          anyOf:
            - type: integer
            - type: 'null'
        types:
          items:
            $ref: '#/components/schemas/ZachestnyibiznesSignificantFactType'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ZachestnyibiznesSignificantFactType:
      properties:
        '@type':
          type: string
          default: ZachestnyibiznesSignificantFactType
        name:
          type: string
        count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    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

````