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

# /borme/acts

> Get all registered company acts (Sección A — Actos Inscritos) from a single daily BORME publication of the Spanish Official Commercial Register Gazette. A publication groups the acts registered in one province on one day. Identify it either by its full identifier (e.g. 'BORME-A-2026-116-08') or by year, issue number and province. Each act includes the register entry number, the company name, the act types (incorporation, director appointments and removals, capital changes, dissolution, etc.), the business purpose, registered office, share capital, sole shareholder, appointments and the register reference (volume, folio, sheet, entry, date).

**Price:** 5 credits

**⚠️ Common errors:** 412: No BORME act publication found for the given identifier



## OpenAPI

````yaml /openapi/company-registries.json post /api/borme/acts
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/borme/acts:
    post:
      tags:
        - /borme
      summary: /borme/acts
      description: >-
        Get all registered company acts (Sección A — Actos Inscritos) from a
        single daily BORME publication of the Spanish Official Commercial
        Register Gazette. A publication groups the acts registered in one
        province on one day. Identify it either by its full identifier (e.g.
        'BORME-A-2026-116-08') or by year, issue number and province. Each act
        includes the register entry number, the company name, the act types
        (incorporation, director appointments and removals, capital changes,
        dissolution, etc.), the business purpose, registered office, share
        capital, sole shareholder, appointments and the register reference
        (volume, folio, sheet, entry, date).


        **Price:** 5 credits


        **⚠️ Common errors:** 412: No BORME act publication found for the given
        identifier
      operationId: __api_borme_acts_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BormeActsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BormeAct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BormeActsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        borme_id:
          anyOf:
            - type: string
            - type: 'null'
        year:
          anyOf:
            - type: integer
              minimum: 2001
            - type: 'null'
        number:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
        province_code:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    BormeAct:
      properties:
        '@type':
          type: string
          default: BormeAct
        registro_number:
          type: string
        company:
          type: string
        act_types:
          items:
            type: string
          type: array
          default: []
        text:
          anyOf:
            - type: string
            - type: 'null'
        start_date:
          anyOf:
            - type: string
            - type: 'null'
        objeto_social:
          anyOf:
            - type: string
            - type: 'null'
        domicilio:
          anyOf:
            - type: string
            - type: 'null'
        capital:
          anyOf:
            - type: string
            - type: 'null'
        sole_shareholder:
          anyOf:
            - type: string
            - type: 'null'
        appointments:
          items:
            $ref: '#/components/schemas/BormeAppointment'
          type: array
          default: []
        registry:
          anyOf:
            - $ref: '#/components/schemas/BormeRegistryData'
            - type: 'null'
      type: object
      required:
        - registro_number
        - company
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BormeAppointment:
      properties:
        '@type':
          type: string
          default: BormeAppointment
        role:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    BormeRegistryData:
      properties:
        '@type':
          type: string
          default: BormeRegistryData
        volume:
          anyOf:
            - type: string
            - type: 'null'
        folio:
          anyOf:
            - type: string
            - type: 'null'
        section:
          anyOf:
            - type: string
            - type: 'null'
        sheet:
          anyOf:
            - type: string
            - type: 'null'
        entry:
          anyOf:
            - type: string
            - type: 'null'
        date:
          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

````