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

# List Activity

> LOW-tier signals — 'All activity' firehose. Activity rows are NOT
deduplicated by incident — each event is its own row by design (this is
the firehose, not the alert list).



## OpenAPI

````yaml https://api.yieldo.xyz/openapi.json get /v1/intel/activity
openapi: 3.1.0
info:
  title: Yieldo API
  description: Cross-chain deposit aggregator for ERC-4626 and custom yield vaults
  version: 1.0.0
servers:
  - url: https://api.yieldo.xyz
    description: Production
security: []
paths:
  /v1/intel/activity:
    get:
      tags:
        - intel
      summary: List Activity
      description: |-
        LOW-tier signals — 'All activity' firehose. Activity rows are NOT
        deduplicated by incident — each event is its own row by design (this is
        the firehose, not the alert list).
      operationId: list_activity_v1_intel_activity_get
      parameters:
        - name: since
          in: query
          required: false
          schema:
            type: string
            default: 24h
            title: Since
        - name: dimension
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Dimension
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````