> ## 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 Meme Signals

> Returns published meme-token alerts. Requires `meme:read`.



## OpenAPI

````yaml /openapi/ghypurr-v1.json get /api/v1/meme-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/meme-signals:
    get:
      tags:
        - Meme
      summary: List Meme Signals
      description: Returns published meme-token alerts. Requires `meme:read`.
      operationId: listMemeSignals
      parameters:
        - $ref: '#/components/parameters/Offset'
        - $ref: '#/components/parameters/Limit'
      responses:
        '200':
          description: Meme 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/MemeSignalPage'
        '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:
    MemeSignalPage:
      type: object
      additionalProperties: false
      required:
        - generatedAt
        - rows
        - pagination
      properties:
        generatedAt:
          type: string
          format: date-time
        rows:
          type: array
          items:
            $ref: '#/components/schemas/MemeSignal'
        pagination:
          $ref: '#/components/schemas/StandardPagination'
    MemeSignal:
      type: object
      additionalProperties: false
      required:
        - alertId
        - chain
        - tokenAddress
        - symbol
        - name
        - score
        - tier
        - marketCapUsd
        - liquidityUsd
        - volumeUsd
        - smartNetBuyEth
        - priceUsd
        - postedAt
      properties:
        alertId:
          type: string
        chain:
          type: string
        tokenAddress:
          type: string
        symbol:
          type: string
        name:
          type:
            - string
            - 'null'
        score:
          type:
            - number
            - 'null'
        tier:
          type:
            - string
            - 'null'
        marketCapUsd:
          type:
            - number
            - 'null'
        liquidityUsd:
          type:
            - number
            - 'null'
        volumeUsd:
          type:
            - number
            - 'null'
        smartNetBuyEth:
          type:
            - number
            - 'null'
        priceUsd:
          type:
            - number
            - 'null'
        postedAt:
          type: string
          format: date-time
    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
  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.

````