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

# changelog

> What's new, newest first: curated product changes plus provider additions derived from the registry. Returns `{ entries }`, each with a date, type, title, and optional provider. Public, no auth.



## OpenAPI

````yaml /openapi.json get /changelog
openapi: 3.1.0
info:
  title: fetchbean API
  version: v1
  description: >-
    One key for web search, page reads, weather, social data, and raw provider
    access.
servers:
  - url: https://api.fetchbean.com
security:
  - apiKeyAuth: []
paths:
  /changelog:
    get:
      tags:
        - Discovery
      summary: changelog
      description: >-
        What's new, newest first: curated product changes plus provider
        additions derived from the registry. Returns `{ entries }`, each with a
        date, type, title, and optional provider. Public, no auth.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
      security: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Your fetchbean API key (fb_…). Keys are not accepted through
        Authorization.

````