Buoy Health Queries API

The Queries API from Buoy Health — 1 operation(s) for queries.

Operations 1

GET /queries/ List queries #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/buoy-health-queries-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

buoy-health-queries-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Buoy Symptom Checker Queries API
  termsOfService: https://static.buoyhealth.com/Buoy+API+Terms+of+Service.pdf
  contact:
    email: alex.nixon@buoyhealth.com
  version: v2.0
  x-logo:
    url: https://www.buoyhealth.com/cms/images/buoy_logo.svg
servers:
- url: https://api.sandbox.buoyhealth.com/symptom-checker/v2
- url: https://api.buoyhealth.com/symptom-checker/v2
security:
- Bearer: []
tags:
- name: Queries
paths:
  /queries/:
    get:
      tags:
      - Queries
      summary: List queries
      description: Retrieves autocomplete text for user queries.
      operationId: queries_list
      parameters:
      - name: text
        in: query
        description: User complaint search text.
        required: true
        examples:
          TextExample:
            value: neck pain
            summary: Text Example
        schema:
          type: string
      - name: tag
        in: query
        description: A label to include in the response. When provided, the server will return the response to the request with the optional 'tag' parameter included. This is to help clients order responses correctly when network latency is greater than the time between requests (e.g., when requests are sent with each character typed). A monotonically increasing integer value works best.
        examples:
          TagExample:
            value: '1'
            summary: Tag Example
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReadAutoCompleteQuerySchema'
              examples:
                OK:
                  value:
                    text: neck p
                    tag: '1'
                    suggestions:
                    - neck pain
                    - neck pain moving down right arm
                    - neck pain and headache
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                additionalProperties: {}
              examples:
                BadRequest:
                  value:
                  - Must provide query parameter 'text'
                  summary: Bad Request
        '401':
          $ref: '#/components/responses/401Response'
components:
  responses:
    401Response:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            additionalProperties: {}
          examples:
            Unauthorized:
              value:
                detail: Authentication credentials were not provided.
            Expired token:
              value:
                detail: Token is invalid or expired (decode)
  schemas:
    ReadAutoCompleteQuerySchema:
      type: object
      properties:
        text:
          title: text
          minLength: 1
          type: string
          description: User complaint search text received on request.
        tag:
          title: tag
          minLength: 1
          type: string
          description: Label defined on request to maintain correct suggestion ordering.
        suggestions:
          type: array
          items:
            type: string
          description: List of autocompleted complaints based on text input.
  securitySchemes:
    Bearer:
      type: oauth2
      description: '[Full documentation for the Buoy Auth API is found here.](https://sandbox.buoyhealth.com/auth/redoc/)'
      flows:
        authorizationCode:
          authorizationUrl: https://auth.sandbox.buoyhealth.com/authorize
          tokenUrl: https://auth.sandbox.buoyhealth.com/oauth/token
          scopes: {}