KGX STORAGE

Download knowledge graph files via HTTPS (no authentication) or S3 (requires AWS credentials with bucket read access).

URL behavior

File URLs use the path to the file (e.g. https://kgx-storage.ci.transltr.io/releases/alliance/latest/graph-metadata.json). Requesting that URL returns the file: JSON is returned as the response body, other formats trigger a download.

For JSON files, appending ?view to the same URL (e.g. .../graph-metadata.json?view) opens the HTML viewer in the browser instead of raw JSON. Only ?view is significant; other query parameters are ignored. Redirects use the canonical path with no query string.

Directory URLs use a trailing slash (e.g. .../latest/). If you request a directory path without a trailing slash, you are redirected to the same path with a trailing slash. Paths that are neither a file nor a directory return 404.

HTTPS Download

Single File
curl -fL -O "https://kgx-storage.ci.transltr.io/releases/go_cam/latest/go_cam.tar.zst"

Replace go_cam with your source name

Specific Version
curl -fL -O "https://kgx-storage.ci.transltr.io/data/ctd/May_2026/transform_1adbe97e/normalization_2025sep1_2.4.1_1.4.0_conflated_strict/merge_2.0.0/merged_nodes.jsonl"
With wget
wget "https://kgx-storage.ci.transltr.io/releases/alliance/latest/alliance.tar.zst"

Understanding curl Flags

The recommended curl command uses -fL flags to ensure reliable file downloads:

Using curl -fL ensures your download scripts fail safely and prevent corrupted data from entering your analysis pipeline.

S3 Download

Requires AWS CLI and credentials with read access to s3://kgx-translator-ingests/. Prefer the HTTPS commands above if you do not have AWS access.

Install AWS CLI
brew install awscli

macOS

sudo apt install awscli

Ubuntu/Debian

Single File
aws s3 cp s3://kgx-translator-ingests/releases/go_cam/latest/go_cam.tar.zst .
Entire Directory (Recursively)
aws s3 sync s3://kgx-translator-ingests/releases/alliance/latest/ ./alliance/

Downloads all files in directory

List Available Files
aws s3 ls s3://kgx-translator-ingests/releases/

Common Paths

Latest Release
releases/{source}/latest/{source}.tar.zst
Merged Files
data/{source}/{version}/{transform}/normalization_{norm}/merged_nodes.jsonl data/{source}/{version}/{transform}/normalization_{norm}/merged_edges.jsonl
Metadata
data/{source}/latest-build.json releases/{source}/latest/graph-metadata.json

Extract Archives

Install zstd
brew install zstd

macOS

sudo apt install zstd

Ubuntu/Debian

Extract .tar.zst
tar --use-compress-program=zstd -xvf go_cam.tar.zst