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

# List Published AI Signals

> Returns an already-published signal snapshot. It does not invoke a model or submit an order. Requires `ai-signals:read`.



## OpenAPI

````yaml /openapi/ghypurr-v1.json get /api/v1/ai-signals
openapi: 3.1.0
info:
  title: gHypurr Public API
  version: 1.0.0
  description: >-
    Read-only access to gHypurr News, Smart Money, Meme Signals, Published AI
    Signals, and account usage. API keys are created in the authenticated
    gHypurr account interface.
  license:
    name: gHypurr API Terms
    url: https://ghypurr.com/legal/api_terms
servers:
  - url: https://ghypurr.com
    description: Production
security:
  - GhypurrApiKey: []
tags:
  - name: News
    description: Published market-news data.
  - name: Smart Money
    description: Public Smart Money wallet research rows.
  - name: Meme
    description: Published meme-token alerts.
  - name: AI Signals
    description: Already-published, read-only AI signal snapshots.
  - name: Account
    description: API usage for the authenticated account.
paths:
  /api/v1/ai-signals:
    get:
      tags:
        - AI Signals
      summary: List Published AI Signals
      description: >-
        Returns an already-published signal snapshot. It does not invoke a model
        or submit an order. Requires `ai-signals:read`.
      operationId: listPublishedAiSignals
      parameters:
        - $ref: '#/components/parameters/Offset'
        - $ref: '#/components/parameters/Limit'
      responses:
        '200':
          description: Published AI Signal page.
          headers:
            X-RateLimit-Limit:
              $ref: '#/components/headers/RateLimitLimit'
            X-RateLimit-Remaining:
              $ref: '#/components/headers/RateLimitRemaining'
            X-Request-ID:
              $ref: '#/components/headers/RequestId'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AiSignalPage'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/RateLimited'
        '503':
          $ref: '#/components/responses/Unavailable'
components:
  parameters:
    Offset:
      name: offset
      in: query
      schema:
        type: integer
        minimum: 0
        default: 0
      description: Zero-based row offset. Invalid negative values normalize to zero.
    Limit:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 50
      description: Rows per page. Values are normalized to the range 1-100.
  headers:
    RateLimitLimit:
      description: Account request limit used for this reservation.
      schema:
        type: integer
    RateLimitRemaining:
      description: >-
        Remaining calls in the applicable account quota pool after this
        successful response.
      schema:
        type: integer
    RequestId:
      description: Opaque request identifier for troubleshooting.
      schema:
        type: string
        format: uuid
  schemas:
    AiSignalPage:
      type: object
      additionalProperties: false
      required:
        - generatedAt
        - source
        - mode
        - rows
        - pagination
      properties:
        generatedAt:
          type:
            - string
            - 'null'
          format: date-time
        source:
          type: string
          const: published-signal-snapshot
        mode:
          type: string
          const: read-only
        rows:
          type: array
          items:
            $ref: '#/components/schemas/AiSignal'
        pagination:
          $ref: '#/components/schemas/StandardPagination'
    AiSignal:
      type: object
      additionalProperties: false
      required:
        - id
        - timestamp
        - asset
        - action
        - confidence
        - riskReward
        - entryPrice
        - tpPrice
        - slPrice
        - rationale
        - status
        - validator
        - quality
        - assetClass
        - screenerScore
        - regime
        - dualAi
      properties:
        id:
          type: string
        timestamp:
          type: string
          format: date-time
        asset:
          type: string
        action:
          type: string
        confidence:
          type: number
        riskReward:
          type:
            - number
            - 'null'
        entryPrice:
          type: number
        tpPrice:
          type:
            - number
            - 'null'
        slPrice:
          type:
            - number
            - 'null'
        rationale:
          type: string
        status:
          type: string
        validator:
          $ref: '#/components/schemas/SignalValidator'
        quality:
          $ref: '#/components/schemas/SignalQuality'
        assetClass:
          type: string
          enum:
            - crypto
            - stock
            - commodity
            - index
            - fx
            - other
        screenerScore:
          type:
            - number
            - 'null'
        regime:
          type:
            - string
            - 'null'
        dualAi:
          $ref: '#/components/schemas/DualAiSummary'
    StandardPagination:
      type: object
      additionalProperties: false
      required:
        - offset
        - limit
        - total
        - returned
        - hasMore
      properties:
        offset:
          type: integer
          minimum: 0
        limit:
          type: integer
          minimum: 1
          maximum: 100
        total:
          type: integer
          minimum: 0
        returned:
          type: integer
          minimum: 0
        hasMore:
          type: boolean
    Error:
      type: object
      additionalProperties: false
      required:
        - error
        - message
      properties:
        error:
          type: string
          example: invalid_api_key
        message:
          type: string
          example: API key is invalid or inactive
    SignalValidator:
      type: object
      additionalProperties: false
      required:
        - allowed
        - score
        - reasonCodes
        - finalAction
      properties:
        allowed:
          type:
            - boolean
            - 'null'
        score:
          type:
            - number
            - 'null'
        reasonCodes:
          type: array
          items:
            type: string
        finalAction:
          type:
            - string
            - 'null'
    SignalQuality:
      type: object
      additionalProperties: false
      required:
        - publishable
        - grade
        - ageSeconds
        - freshness
        - checks
      properties:
        publishable:
          type: boolean
        grade:
          type: string
          enum:
            - A
            - B
            - C
            - REJECT
        ageSeconds:
          type: number
          minimum: 0
        freshness:
          type: string
          enum:
            - live
            - delayed
            - stale
        checks:
          type: array
          items:
            type: string
    DualAiSummary:
      type:
        - object
        - 'null'
      additionalProperties: false
      properties:
        analyst:
          type: string
        arbiter:
          type: string
        verdict:
          type: string
        confidence:
          type: number
      description: Optional published summary fields. No model internals are exposed.
  responses:
    Unauthorized:
      description: The Bearer API key is absent, malformed, invalid, expired, or inactive.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: The key lacks the required scope or the request IP is not allowed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    RateLimited:
      description: The account quota, request rate, or concurrency limit has been reached.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unavailable:
      description: A required API service is temporarily unavailable.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    GhypurrApiKey:
      type: http
      scheme: bearer
      bearerFormat: opaque API key
      description: >-
        Create a scoped key at https://ghypurr.com/account/api-keys. Never place
        a real key in documentation or client-side source.

````