> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usecroma.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Listar actuaciones

> The organization-wide feed of actuaciones across every case, most relevant first (relevance, then date). Use `since` / `until` with `since_mode` to build change feeds. Cursor-paginated.



## OpenAPI

````yaml legal/openapi.json GET /v1/actions
openapi: 3.1.0
info:
  title: Croma Legal API
  version: 1.0.0
  description: >-
    Read-only access to your organization's litigation portfolio in Croma Legal:
    cases (processes), actuaciones, defendants, portfolio analytics and bulk
    exports. Every request is scoped to the organization that owns the API key.
servers:
  - url: https://api.legal.usecroma.com
security:
  - bearerAuth: []
tags:
  - name: Processes
    description: Cases in your portfolio.
  - name: Actuaciones
    description: Court filings and events across every case.
  - name: Defendants
    description: Demandados and the cases linked to them.
  - name: Analytics
    description: Aggregates over the portfolio.
  - name: Exports
    description: Bulk CSV / JSONL files.
  - name: Jobs
    description: Async job status.
paths:
  /v1/actions:
    get:
      tags:
        - Actuaciones
      summary: List actuaciones
      description: >-
        The organization-wide feed of actuaciones across every case, most
        relevant first (relevance, then date). Use `since` / `until` with
        `since_mode` to build change feeds. Cursor-paginated.
      operationId: list_actions
      parameters:
        - name: q
          in: query
          required: false
          description: >-
            Partial, case-insensitive match on the case's registration number
            (radicado).
          schema:
            type: string
        - name: content
          in: query
          required: false
          description: >-
            Keyword in the actuación text (case insensitive), e.g. `sentencia`,
            `notificación`.
          schema:
            type: string
        - name: defendant
          in: query
          required: false
          description: Partial match on the defendant name.
          schema:
            type: string
        - name: defendant_id
          in: query
          required: false
          description: >-
            Partial match on the defendant identification number (cédula or
            NIT).
          schema:
            type: string
        - name: office
          in: query
          required: false
          description: Partial match on the judicial office (despacho).
          schema:
            type: string
        - name: source
          in: query
          required: false
          description: >-
            Public source the actuación was recorded from, exactly as returned
            in `source` (e.g. `CONSULTA_PROCESOS`, `PUBLICACIONES_PROCESALES`,
            `TYBA`).
          schema:
            type: string
        - name: since
          in: query
          required: false
          description: >-
            ISO 8601 date-time. Only actuaciones on or after this instant, on
            the column chosen by `since_mode`.
          schema:
            type: string
            format: date-time
        - name: until
          in: query
          required: false
          description: >-
            ISO 8601 date-time. Only actuaciones strictly before this instant,
            on the column chosen by `since_mode`.
          schema:
            type: string
            format: date-time
        - name: since_mode
          in: query
          required: false
          description: >-
            Which date `since` / `until` (and the ordering) use. `discovered`
            (default): when Croma recorded the actuación (`action_created_at`),
            the right choice for "what is new since my last sync". `judicial`:
            the actuación's own date (`registration_date`).
          schema:
            type: string
            enum:
              - discovered
              - judicial
            default: discovered
        - name: cursor
          in: query
          required: false
          description: >-
            Opaque pagination cursor from a previous response's `next_cursor`.
            Omit for the first page.
          schema:
            type: string
        - name: page_size
          in: query
          required: false
          description: Rows per page (default 25, max 100).
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
      responses:
        '200':
          description: Successful response
          headers:
            X-Request-Id:
              description: >-
                Unique id for the request (req_…). Include it in support
                reports.
              schema:
                type: string
            X-RateLimit-Limit:
              description: Requests allowed in the current window.
              schema:
                type: integer
            X-RateLimit-Remaining:
              description: Requests left before you are throttled.
              schema:
                type: integer
            X-RateLimit-Reset:
              description: ISO 8601 timestamp when the window resets.
              schema:
                type: string
                format: date-time
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - next_cursor
                  - has_more
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ActionFeedItem'
                  next_cursor:
                    type:
                      - string
                      - 'null'
                    description: Cursor for the next page. `null` when `has_more` is false.
                  has_more:
                    type: boolean
              example:
                data:
                  - id: c1d2e3f4-a5b6-4c7d-8e9f-0a1b2c3d4e5f
                    message: AUTO QUE DECRETA MEDIDAS CAUTELARES
                    note: >-
                      Se decreta el embargo y retención de los dineros del
                      demandado.
                    registration_date: '2026-08-18T00:00:00.000Z'
                    action_created_at: '2026-08-19T06:02:11.000Z'
                    source: CONSULTA_PROCESOS
                    publication_url: null
                    document_url: null
                    process_id: 3f1c2a44-9b1e-4c5a-8d2f-6a7b8c9d0e1f
                    registration_number: '11001400300120240012300'
                    plaintiff_name: BANCO EJEMPLO S.A.
                    defendant_name: CLIENTE DE EJEMPLO
                    defendant_id: '1234567890'
                    defender_name: null
                    office: JUZGADO 001 CIVIL MUNICIPAL DE BOGOTÁ
                    priority: null
                    is_private: false
                    last_discovery_date: '2026-08-20T09:14:33.000Z'
                    metadata:
                      etapa: EJECUTIVO
                next_cursor: >-
                  eyJzY29yZSI6MywiZGF0ZSI6IjIwMjYtMDgtMTlUMDY6MDI6MTEuMDAwWiIsImlkIjoiYzFkMiJ9
                has_more: true
        '401':
          description: Missing or invalid API key
          headers:
            X-Request-Id:
              description: >-
                Unique id for the request (req_…). Include it in support
                reports.
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
              example:
                error:
                  type: authentication_error
                  code: invalid_api_key
                  message: Invalid or missing API key.
        '429':
          description: Rate limit exceeded
          headers:
            X-Request-Id:
              description: >-
                Unique id for the request (req_…). Include it in support
                reports.
              schema:
                type: string
            Retry-After:
              description: Seconds to wait before retrying.
              schema:
                type: integer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
              example:
                error:
                  type: rate_limit_error
                  code: rate_limited
                  message: Rate limit exceeded. Try again in 42 seconds.
        '500':
          description: Unexpected internal error
          headers:
            X-Request-Id:
              description: >-
                Unique id for the request (req_…). Include it in support
                reports.
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
              example:
                error:
                  type: api_error
                  code: internal_error
                  message: >-
                    Internal error. Contact support with the X-Request-Id if it
                    persists.
      security:
        - bearerAuth: []
      externalDocs:
        description: Guide and examples
        url: https://docs.usecroma.com/legal/pagination
components:
  schemas:
    ActionFeedItem:
      type: object
      required:
        - id
        - process_id
        - registration_number
        - message
      description: An actuación together with the case it belongs to.
      properties:
        id:
          type: string
          format: uuid
        process_id:
          type: string
          format: uuid
          description: Internal id of the case.
        registration_number:
          type: string
          description: Registration number (radicado) of the case.
        message:
          type: string
          description: Text of the actuación.
        note:
          type:
            - string
            - 'null'
          description: Annotation (anotación) attached to the actuación.
        registration_date:
          type:
            - string
            - 'null'
          format: date-time
          description: Judicial date of the actuación.
        action_created_at:
          type: string
          format: date-time
          description: When Croma recorded the actuación.
        source:
          type:
            - string
            - 'null'
          description: Public source the actuación was recorded from.
        publication_url:
          type:
            - string
            - 'null'
          format: uri
        document_url:
          type:
            - string
            - 'null'
          format: uri
        plaintiff_name:
          type:
            - string
            - 'null'
        defendant_name:
          type:
            - string
            - 'null'
        defendant_id:
          type:
            - string
            - 'null'
          description: Identification number (cédula or NIT) of the linked defendant.
        defender_name:
          type:
            - string
            - 'null'
        office:
          type:
            - string
            - 'null'
          description: Judicial office (despacho) of the case.
        priority:
          type:
            - string
            - 'null'
          enum:
            - HIGH
            - MEDIUM
            - null
          description: >-
            Priority is a personal flag each dashboard user sets on their own
            cases. API requests carry no user, so this is always `null`.
        is_private:
          type:
            - boolean
            - 'null'
        last_discovery_date:
          type:
            - string
            - 'null'
          format: date-time
          description: Last time Croma reviewed the case.
        metadata:
          type:
            - object
            - 'null'
          additionalProperties: true
          description: Your organization's own fields for the case.
    ApiError:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - type
            - code
            - message
          properties:
            type:
              type: string
              description: >-
                Broad category: invalid_request_error, authentication_error,
                not_found_error, rate_limit_error, api_error.
            code:
              type: string
              description: Machine-readable specific code.
            message:
              type: string
              description: Human-readable explanation, safe to surface in UI.
            param:
              type: string
              description: Field that triggered the error. Present on validation errors.
            details:
              type: object
              description: Free-form structured detail.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Use Authorization: Bearer YOUR_API_KEY'

````