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

# Get run history across all taps

> Returns run log entries for every tap, newest window first. Feeds the Ops activity dashboard's aggregation. Defaults to the last 30 days, capped at 2000 rows.



## OpenAPI

````yaml /openapi.yaml get /api/v1/tap/logs/all
openapi: 3.0.3
info:
  title: Datris API
  description: >
    REST API for the Datris AI Data Platform. Ingest, validate, transform,
    store, and retrieve data.


    For AI agent integration, use the [MCP
    Server](https://docs.datris.ai/mcp-server) instead.
  version: 1.11.3
  contact:
    name: Datris
    url: https://datris.ai
  license:
    name: Apache 2.0
servers:
  - url: http://localhost:8080
    description: Local development
security:
  - ApiKeyAuth: []
paths:
  /api/v1/tap/logs/all:
    get:
      tags:
        - Taps
      summary: Get run history across all taps
      description: >-
        Returns run log entries for every tap, newest window first. Feeds the
        Ops activity dashboard's aggregation. Defaults to the last 30 days,
        capped at 2000 rows.
      parameters:
        - name: since
          in: query
          required: false
          schema:
            type: integer
            format: int64
          description: >-
            Only return runs created at or after this epoch-milliseconds
            timestamp (default now minus 30 days)
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 2000
            maximum: 5000
          description: Maximum entries to return (values above 5000 are clamped)
      responses:
        '200':
          description: Array of run log entries across all taps
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TapRunLog'
        '500':
          description: Error
components:
  schemas:
    TapRunLog:
      type: object
      properties:
        tapName:
          type: string
        runTime:
          type: string
        status:
          type: string
          enum:
            - success
            - failure
        recordCount:
          type: integer
        dataType:
          type: string
        logs:
          type: string
        error:
          type: string
        mode:
          type: string
          enum:
            - run
            - test
          description: >-
            'run' = results persisted to the target pipeline; 'test' = script
            executed, results discarded
        durationMs:
          type: integer
          format: int64
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Optional API key for authentication (enabled via application.yaml)

````