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

# public tool-request board

> The public board of tools people have asked fetchbean to add. Returns `{ requests }`. Private requests are never included. Public, no auth. Submit one with POST /v1/requests.



## OpenAPI

````yaml /openapi.json get /requests
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:
  /requests:
    get:
      tags:
        - Requests
      summary: public tool-request board
      description: >-
        The public board of tools people have asked fetchbean to add. Returns `{
        requests }`. Private requests are never included. Public, no auth.
        Submit one with POST /v1/requests.
      parameters:
        - name: category
          in: query
          schema:
            type: string
          description: Narrow to one provider category.
        - name: status
          in: query
          schema:
            type: string
            enum:
              - open
              - planned
              - building
              - shipped
              - declined
          description: Narrow to one status.
        - name: sort
          in: query
          schema:
            type: string
            enum:
              - top
              - newest
          description: top (default, by votes) or newest.
      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.

````