GZW DataAPI examples
First API post

Three useful requests for GZW Data

The public API needs no API key. Start with the versioned base URL and build from there.

01 · List a dataset

Find weapons

Fetch the first page of weapon records as JSON:

curl "https://gzw-data.dev/api/v1/weapons?page=1&per_page=5"

Use page and per_page for predictable pagination.

02 · Fetch one record

Get a record by ID

After reading an ID from the dataset, request the individual record:

curl "https://gzw-data.dev/api/v1/weapons/ak-12"

This is useful for detail pages and bots that already know the record ID.

03 · Search across data

Search for a term

Search across the available datasets:

curl "https://gzw-data.dev/api/v1/search?q=AK"

Every response is JSON and includes the data snapshot metadata when available.

Shareable caption

Copy for a project update

Need a short post? Use this:

Need Gray Zone Warfare data in your tool? GZW Data is a free public API for weapons, missions, loot and more. Start with https://gzw-data.dev/api/v1/weapons — no API key required.