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

# List news articles

> Returns paginated news articles with optional filtering by publication, tag, date range, and keyword search.



## OpenAPI

````yaml /openapi.json get /data/news/articles
openapi: 3.0.0
info:
  title: Lava API
  description: >-
    Lava API enables businesses to implement usage-based billing for AI
    services. This API allows tracking, managing, and billing for third-party AI
    API usage through a forwarding system.
  version: 1.0.0
  contact:
    name: Lava support
    url: https://www.lava.so/contact
servers:
  - url: https://api.lava.so/v1/
    description: Lava API v1
security: []
tags:
  - name: Authentication
  - name: Core Endpoints
  - name: Models
  - name: Services
  - name: Requests
  - name: Wallet
  - name: Payment Methods
  - name: Spend Keys
  - name: Usage
  - name: Checkout Sessions
  - name: Customers
  - name: Plans
  - name: Subscriptions
  - name: Meters
  - name: Webhooks
  - name: Secret Keys
  - name: Credit Bundles
  - name: Gateway Settings
  - name: Skills
  - name: News Data
  - name: Search
  - name: Enrich
paths:
  /data/news/articles:
    get:
      tags:
        - News Data
      summary: List news articles
      description: >-
        Returns paginated news articles with optional filtering by publication,
        tag, date range, and keyword search.
      parameters:
        - name: publication
          in: query
          required: false
          schema:
            type: string
          description: Comma-separated publication slugs to filter by (e.g. nytimes,wsj)
        - name: tag
          in: query
          required: false
          schema:
            type: string
          description: Comma-separated tags to filter by (e.g. technology,business)
        - name: q
          in: query
          required: false
          schema:
            type: string
            maxLength: 200
          description: >-
            Case-insensitive keyword search across article title and summary.
            Tokens are split on whitespace and every token must appear in the
            title or summary (order-independent). Wildcards and operators are
            not supported — each token is matched literally.
        - name: since
          in: query
          required: false
          schema:
            type: string
            format: date-time
          description: >-
            ISO 8601 date string. Only articles published after this date are
            returned. Defaults to 24 hours ago.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 50
            minimum: 1
            maximum: 200
          description: Page size (default 50, max 200)
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            default: 0
            minimum: 0
          description: Pagination offset (default 0)
      responses:
        '200':
          description: Paginated list of articles
          content:
            application/json:
              schema:
                type: object
                properties:
                  articles:
                    type: array
                    items:
                      type: object
                      properties:
                        publication:
                          type: string
                        isPaywalled:
                          type: boolean
                          nullable: true
                          description: >-
                            True if the publication requires a subscription to
                            read originalUrl; agents should use archiveUrl as a
                            fallback. Null for untracked publications.
                        title:
                          type: string
                        summary:
                          type: string
                          nullable: true
                        tags:
                          type: array
                          items:
                            type: string
                        author:
                          type: string
                          nullable: true
                        originalUrl:
                          type: string
                        archiveUrl:
                          type: string
                        publishedAt:
                          type: string
                          format: date-time
                        source:
                          type: string
                  total:
                    type: integer
                  limit:
                    type: integer
                  offset:
                    type: integer
        '400':
          description: Invalid parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - Auth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            message:
              type: string
              description: Human-readable error message describing what went wrong
              example: Invalid authentication credentials
            code:
              type: string
              description: Machine-readable error code describing what went wrong
              example: forward_token_json_invalid
            status:
              type: integer
              description: HTTP status code of the error
              example: 400
            issues:
              type: array
              items:
                type: object
                properties:
                  path:
                    type: array
                    items:
                      type: string
                    description: Path to the field that caused the validation error
                  message:
                    type: string
                    description: Error message describing the validation issue
                required:
                  - path
                  - message
              description: >-
                Optional array of specific validation issues with their paths
                and messages
              example:
                - path:
                    - model
                  message: 'Missing required field: model'
                - path:
                    - messages
                    - '0'
                    - content
                  message: Invalid message content format
          required:
            - message
            - code
            - status
      required:
        - error
  securitySchemes:
    Auth:
      type: http
      scheme: bearer
      description: >-
        Bearer token authentication used for standard API calls. Format: 'Bearer
        YOUR_API_KEY'

````