Cancer.gov Best Bets API

Returns NCI's editorially curated 'best bet' results for a search term — the promoted, hand-picked answers cancer.gov surfaces above algorithmic search results. No credential required.

Operations 2

GET /BestBets/{collection}/{language}/{term} Get the Best Bet Categories specified language and term. #
GET /BestBets/status Provides an endpoint for checking that the various services which make up the API (and thus the API itself) are all in a state where they can return information. #

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/best-bets-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

cancer-gov-best-bets-openapi.yml Raw ↑
x-generator: NSwag v13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))
openapi: 3.0.0
info:
  title: Best Bets API
  version: 1.0.0
  x-apis-io-source: https://webapis.cancer.gov/bestbets/v1/swagger/v1/swagger.json
  x-apis-io-harvested: '2026-09-05'
  x-apis-io-method: searched
servers:
- url: https://webapis.cancer.gov/bestbets/v1
  description: Production host (resolved from the URL this specification was served from; the published document
    carries '/bestbets/v1')
paths:
  /BestBets/{collection}/{language}/{term}:
    get:
      tags:
      - BestBets
      summary: Get the Best Bet Categories specified language and term.
      operationId: BestBets_Get
      parameters:
      - name: collection
        in: path
        required: true
        description: The collection to use. For normal operation use 'live'.
        schema:
          type: string
        x-position: 1
      - name: language
        in: path
        required: true
        description: The language of the results. This should be either 'en' for English or 'es' for Spanish.
        schema:
          type: string
        x-position: 2
      - name: term
        in: path
        required: true
        description: The search term to get categories for.
        schema:
          type: string
        x-position: 3
      responses:
        '200':
          description: The get.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IBestBetDisplay'
  /BestBets/status:
    get:
      tags:
      - BestBets
      summary: 'Provides an endpoint for checking that the various services which make up the API

        (and thus the API itself) are all in a state where they can return information.'
      operationId: BestBets_GetStatus
      responses:
        '200':
          description: "The contents of BestBetsController.HEALTHY_STATUS ('alive!') if\n            all services\
            \ are running. If unhealthy services are found, APIErrorException is thrown\n            with HTTPStatusCode\
            \ set to 500."
          content:
            application/json:
              schema:
                type: string
components:
  schemas:
    IBestBetDisplay:
      type: object
      description: Represents Display information about a Best Bet
      x-abstract: true
      additionalProperties: false
      properties:
        id:
          type: string
          description: Gets the ID of the category
          nullable: true
        name:
          type: string
          description: Gets the name of the category
          nullable: true
        html:
          type: string
          description: Gets the HTML to be displayed
          nullable: true
        weight:
          type: integer
          description: Gets the weighting of this category for diplay purposes
          format: int32