National Cancer Institute Download API

The Download API from National Cancer Institute — 3 operation(s) for download.

Operations 3

GET /data/{file_id} Download a file #
GET /manifest Generate manifest #
GET /slicing/view/{file_id} BAM slicing #

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/national-cancer-institute-download-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

national-cancer-institute-download-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: NCI Genomic Data Commons (GDC) Download API
  description: The GDC API provides programmatic access to cancer genomic and clinical data hosted by the National Cancer Institute Genomic Data Commons. The API supports search and retrieval of projects, cases, files, and annotations, along with file download, BAM slicing, and data submission workflows.
  version: 1.0.0
  contact:
    name: NCI Genomic Data Commons
    url: https://gdc.cancer.gov/developers/gdc-application-programming-interface-api
servers:
- url: https://api.gdc.cancer.gov
  description: GDC API latest
- url: https://api.gdc.cancer.gov/v0
  description: GDC API v0
security:
- GdcAuthToken: []
tags:
- name: Download
paths:
  /data/{file_id}:
    get:
      tags:
      - Download
      summary: Download a file
      description: Download an open-access file by ID. Controlled data requires a token.
      operationId: downloadFile
      parameters:
      - name: file_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: File data
        '401':
          description: Authentication required for controlled data
  /manifest:
    get:
      tags:
      - Download
      summary: Generate manifest
      description: Generate a manifest for use with the GDC Data Transfer Tool.
      operationId: getManifest
      parameters:
      - name: filters
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Manifest
  /slicing/view/{file_id}:
    get:
      tags:
      - Download
      summary: BAM slicing
      description: Retrieve a slice of a BAM file by genomic region.
      operationId: sliceBam
      parameters:
      - name: file_id
        in: path
        required: true
        schema:
          type: string
      - name: region
        in: query
        schema:
          type: string
      responses:
        '200':
          description: BAM slice
        '401':
          description: Authentication required
components:
  securitySchemes:
    GdcAuthToken:
      type: apiKey
      in: header
      name: X-Auth-Token