Discover/AmmoSeek API
live

AmmoSeek APIammoseek.com

Search in-stock ammunition, firearms, and reloading components across retailers via the AmmoSeek API. Get prices, calibers, retailer ratings, and deals.

Endpoint health
verified 7d ago
get_retailer_ratings
get_deals
search_reloading
get_popular_calibers
search_ammo
7/7 passing latest checkself-healing
Endpoints
7
Updated
22d ago

What is the AmmoSeek API?

The AmmoSeek API provides 7 endpoints for querying in-stock ammunition, firearms, and reloading supplies aggregated from multiple retailers. The search_ammo endpoint returns per-listing fields including price, cost-per-round (cp, cp_cleaned), grain weight, casing type, condition, and retailer URL — making it straightforward to build price-comparison tools or inventory monitors across calibers like 9mm-luger, 223-remington, and 22lr.

Try it
Sort order for results.
Brand/manufacturer filter ID. 0 means no filter.
Pagination offset (0-based).
Grain weight filter. 0 means no filter.
Number of results per page (max 40).
Caliber slug (e.g. '9mm-luger', '223-remington', '22lr', '45acp'). Use get_ammo_caliber_list or get_popular_calibers to discover valid slugs.
Keywords to exclude from search results.
Keywords to include in search results.
Gun type filter. Accepted values: handgun, rifle, rimfire, shotgun.
api.parse.bot/scraper/0a603c5c-dac6-4a0a-a758-05abdfc3060e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/0a603c5c-dac6-4a0a-a758-05abdfc3060e/search_ammo?brand=0&start=0&grains=0&length=5&caliber=12-gauge&gun_type=handgun' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace ammoseek-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""AmmoSeek SDK walkthrough — search ammo, guns, reloading supplies; compare retailers and deals."""
from parse_apis.ammoseek_api import AmmoSeek, GunType, ReloadingCategory, InvalidCategory

client = AmmoSeek()

# List popular calibers to discover valid slugs for ammo search.
for cal in client.calibers.list_popular(limit=5):
    print(cal.label, cal.slug)

# Search ammunition by caliber — limit caps total items returned.
for listing in client.ammolistings.search(caliber="9mm-luger", gun_type=GunType.HANDGUN, limit=3):
    print(listing.descr, listing.price, listing.cp_cleaned)

# Search firearms — no required params, returns all guns sorted by price.
gun = client.gunlistings.search(limit=1).first()
if gun:
    print(gun.descr, gun.price, gun.retailer)

# Search reloading components with a category enum.
for item in client.reloadinglistings.search(category=ReloadingCategory.PRIMERS, limit=3):
    print(item.descr, item.price, item.retailer)

# List retailer ratings to evaluate trustworthiness.
for retailer in client.retailers.list(limit=5):
    print(retailer.name, retailer.rating, retailer.review_count)

# Check current deals and coupon codes.
deal = client.deals.list(limit=1).first()
if deal:
    print(deal.retailer, deal.description, deal.coupon_code)

# Typed error handling — catch invalid category input.
try:
    bad = client.reloadinglistings.search(category="invalid_category", limit=1).first()
except InvalidCategory as exc:
    print(f"Invalid category: {exc.category}")

print("exercised: calibers.list_popular / ammolistings.search / gunlistings.search / reloadinglistings.search / retailers.list / deals.list")
All endpoints · 7 totalmissing one? ·

Search for in-stock ammunition by caliber. Returns detailed product listings including price, price per round, brand, retailer ratings, and condition. Results are paginated via start/length parameters. Each listing includes retailer trust data and a direct purchase link.

Input
ParamTypeDescription
sortstringSort order for results.
brandstringBrand/manufacturer filter ID. 0 means no filter.
startintegerPagination offset (0-based).
grainsstringGrain weight filter. 0 means no filter.
lengthintegerNumber of results per page (max 40).
caliberrequiredstringCaliber slug (e.g. '9mm-luger', '223-remington', '22lr', '45acp'). Use get_ammo_caliber_list or get_popular_calibers to discover valid slugs.
excludestringKeywords to exclude from search results.
includestringKeywords to include in search results.
gun_typestringGun type filter. Accepted values: handgun, rifle, rimfire, shotgun.
Response
{
  "type": "object",
  "fields": {
    "items": "array of ammunition listing objects with retailer, description, manufacturer, caliber, price, cost per round, count, grains, casing, condition, rating, and retailer URL",
    "total": "integer total number of matching records",
    "filtered": "integer number of records after filtering"
  },
  "sample": {
    "data": {
      "items": [
        {
          "cp": "6.4¢",
          "mfg": "Wolf",
          "count": 50,
          "descr": "Wolf Performance 9mm Luger Ammo 124 Grain FMJ",
          "price": "$3.20",
          "casing": "steel",
          "grains": 124,
          "rating": 4,
          "caliber": "9mm Luger",
          "retailer": "Ammo ASAP",
          "condition": "new",
          "cp_cleaned": 6.4,
          "num_ratings": 99,
          "retailer_url": "https://ammoseek.com/share/a/422646495040"
        }
      ],
      "total": 500,
      "filtered": 500
    },
    "status": "success"
  }
}

About the AmmoSeek API

Ammo and Firearm Search

The search_ammo endpoint accepts a required caliber slug (e.g. 45acp, 308-winchester) plus optional filters for brand, grains, include, and exclude keywords. Results are paginated via start and length parameters and each item in the items array carries fields: retailer, descr, mfg, caliber, price, cp (cost per round), cp_cleaned, count, grains, casing, and condit. The total and filtered integers in the response tell you how many records match before and after filtering. Use get_ammo_caliber_list to retrieve valid caliber slugs, or get_popular_calibers if you only need the commonly searched ones organized by firearm type (handgun, rifle, rimfire, shotgun).

Firearms and Reloading

search_guns follows the same pagination pattern and returns firearm listings with retailer, descr, mfg, caliber, price, rating, num_ratings, and retailer_url. search_reloading requires a category parameter — one of bullets, brass, primers, powder, or miscellaneous — and returns component listings with cost-per-unit fields alongside retailer ratings. Both endpoints support brand, include, and exclude filters.

Retailer Intelligence and Deals

get_retailer_ratings returns the full roster of indexed retailers with each retailer's name, rating, and review_count — useful for filtering or ranking results from the search endpoints by seller reputation. get_deals surfaces current promotions from participating retailers, including retailer, description, and coupon_code fields. Neither endpoint requires any input parameters.

Reliability & maintenanceVerified

The AmmoSeek API is a managed, monitored endpoint for ammoseek.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ammoseek.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official ammoseek.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
7/7 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a cost-per-round price tracker for a specific caliber across all indexed retailers
  • Alert users when in-stock 9mm or 223 ammo drops below a target price using search_ammo sorted by cp_cleaned
  • Aggregate retailer ratings from get_retailer_ratings to rank search results by seller reputation
  • Surface active coupon codes from get_deals inside a browser extension or deal-alert service
  • Compare reloading primer and powder prices across brands using search_reloading with category filters
  • Populate a caliber selector UI from get_ammo_caliber_list to ensure valid search inputs
  • Monitor firearm listings by caliber and brand using search_guns for in-stock availability notifications
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does AmmoSeek have an official developer API?+
AmmoSeek does not publish a public developer API or documented data feed. This Parse API is the structured programmatic interface for accessing AmmoSeek data.
What does `cp` versus `cp_cleaned` mean in `search_ammo` results?+
cp is the raw cost-per-round string as listed, which may include formatting characters or symbols. cp_cleaned is a normalized numeric version suitable for sorting and arithmetic comparisons. Use cp_cleaned when building price filters or ranking results.
Does `search_ammo` return sold-out or historical listings?+
The endpoint returns in-stock listings only. Out-of-stock items and historical price data are not included in any of the current endpoints. You can fork this API on Parse and revise it to add a price-history or out-of-stock tracking endpoint if that data becomes accessible.
Can I filter `search_guns` by firearm type (handgun, rifle, etc.)?+
The search_guns endpoint currently filters by brand, caliber, include, and exclude keywords. A dedicated firearm-type or action-type filter is not exposed. You can fork this API on Parse and revise it to add a category or type parameter to narrow firearm results further.
How do I discover valid caliber slugs for `search_ammo`?+
get_ammo_caliber_list returns an array of objects each with a label (human-readable name) and seo (the slug to pass as caliber). For a shorter list of commonly searched calibers grouped by firearm type, use get_popular_calibers, which returns label and slug fields.
Page content last updated . Spec covers 7 endpoints from ammoseek.com.
Related APIs in EcommerceSee all →
amazon.com API
Search and browse Amazon products, reviews, offers, and deals, then manage your shopping cart all through a single integration. Get detailed product information, seller profiles, and best sellers to compare prices and make informed purchasing decisions.
amzn.to API
Search Amazon products and retrieve detailed information including pricing, reviews, and specifications, plus discover current best sellers across categories. Get real-time product data to compare options and find trending items on Amazon.
miniaturemarket.com API
Search for miniature and tabletop gaming products, browse items by category, and access detailed product information including customer reviews and current deals from Miniature Market. Find exactly what you need with comprehensive product listings and real-time pricing data to make informed purchasing decisions.
amoeba.com API
Search and browse Amoeba Music's catalog of vinyl records and CDs, including used listings, to find product details and discover new releases. Check store information to plan your visits to Amoeba's physical locations.
booksamillion.com API
Access Books-A-Million's catalog to retrieve bestseller lists across fiction, nonfiction, manga, YA, and kids' categories, fetch detailed book information and customer reviews, search books by keyword, and look up nearby store locations. Returns structured data including titles, authors, pricing, availability, cover images, and paginated review content.
amazon.ca API
amazon.ca API
rei.com API
Search and browse REI's full catalog of outdoor gear and clothing, compare detailed product specifications, check real-time store availability, and read customer reviews to find the perfect equipment for your adventures. Explore products by category or use targeted searches to discover gear that matches your needs, all with instant access to pricing and local stock information.
newegg.com API
Search Newegg's product catalog and retrieve listings, specifications, customer reviews, Q&A, category trees, and daily deals.