> ## 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 news

> Returns a paginated, read-only news dataset. Requires `news:read`.



## OpenAPI

````yaml /openapi/ghypurr-v1.json get /api/v1/news
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/news:
    get:
      tags:
        - News
      summary: List news
      description: Returns a paginated, read-only news dataset. Requires `news:read`.
      operationId: listNews
      parameters:
        - $ref: '#/components/parameters/Offset'
        - $ref: '#/components/parameters/Limit'
        - name: q
          in: query
          schema:
            type: string
          description: Free-text search.
        - name: category
          in: query
          schema:
            type: string
          description: Category filter.
        - name: symbol
          in: query
          schema:
            type: string
          description: Related symbol filter.
        - name: market
          in: query
          schema:
            type: string
          description: Related market filter.
        - name: source
          in: query
          schema:
            type: string
          description: Source filter.
        - name: filter
          in: query
          schema:
            type: string
          description: Published feed filter.
        - name: kind
          in: query
          schema:
            type: string
          description: Published item-kind filter.
      responses:
        '200':
          description: News 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/NewsPage'
        '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:
    NewsPage:
      type: object
      additionalProperties: false
      required:
        - generatedAt
        - rows
        - pagination
      properties:
        generatedAt:
          type:
            - string
            - 'null'
          format: date-time
        rows:
          type: array
          items:
            $ref: '#/components/schemas/NewsItem'
        pagination:
          $ref: '#/components/schemas/NewsPagination'
    NewsItem:
      type: object
      required:
        - id
        - headline
        - symbols
        - markets
        - badges
        - observedAt
      properties:
        id:
          type: string
        clusterId:
          type:
            - string
            - 'null'
        headline:
          type: string
        source:
          type:
            - string
            - 'null'
        sourceDomain:
          type:
            - string
            - 'null'
        url:
          type:
            - string
            - 'null'
          format: uri
        category:
          type:
            - string
            - 'null'
        kind:
          type:
            - string
            - 'null'
        lane:
          type:
            - string
            - 'null'
        symbols:
          type: array
          items:
            type: string
        markets:
          type: array
          items:
            type: string
        badges:
          type: array
          items:
            type: string
        heatScore:
          type:
            - number
            - 'null'
        observedAt:
          type: string
          format: date-time
        coverage:
          description: Public coverage metadata for the item.
    NewsPagination:
      type: object
      additionalProperties: false
      required:
        - offset
        - limit
        - returned
        - nextOffset
        - hasMore
      properties:
        offset:
          type: integer
          minimum: 0
        limit:
          type: integer
          minimum: 1
          maximum: 100
        returned:
          type: integer
          minimum: 0
        nextOffset:
          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.

````