GovAuctions

by Unknown

Not rated
Website

About

Agent-callable tools for US government-surplus auctions — search live listings, real sold-price comps, and a 0-100 Flip Score resale signal.

Details

Author
Unknown
Categories
Search, Other

GovAuctions.appis a free public site for finding government surplus auctions and checking what similar lots actually sold for. This page is the developer door into that same data.

Government-surplus data built for code and AI agents - real sold-price comps, resale scores, and live listings

The GovAuctions API lets you explore live and historical surplus auction data at scale. Access past sales, sold-price comps, price trends and Flip Scores computed across four government-surplus markets - US, UK, Canada and Australia. You can also access live GSA federal-surplus listings, and webhooks that push new lots to you. Query it over REST, or add the hosted MCP server to Claude Code in one line. One key, the same valuation engine behind GovAuctions Pro.

Want the data itself rather than an API to query?Bulk data licensinggives you ongoing access to the full corpus as scheduled exports.

Add it, list the tools, and ask a sold-price question before anyone signs up. An agent should not need an account to find out whether we have your data.

$1.90 per 1,000 calls, and $0.98 on the tier above. Judge us on that, not on the monthly figure.

US, UK, Canada and Australia comps from the same endpoints and the same key, including on the free tier. No regional add-on, no separate contract.

- •Active federal-surplus lots from GSA Auctions, in one clean schema
- •Filter by state, category, price, and keyword
- •ZIP-radius search: pass a ZIP and a mile radius, get lots nearest first
- •Clean JSON, facts only - pull images from each source URL

- •What comparable items actually sold for: p25 / median / p75
- •Four markets - US, UK, Canada and Australia - matched by item
- •Ask for the underlying sales too, so you can show your work
- •Price up to 100 items in a single batch call

- •The individual sales behind a number: price, month, state
- •Month-by-month medians - is this category softening?
- •A coverage endpoint that tells you what we can’t price, up front

- •Our resale signal: estimated value, effective bid, discount gap
- •Webhooks push matching new lots to you - stop polling
- •The Pro deal-finder, exposed straight to your code

Compare data APIs oncalls per dollar, not on the headline monthly price. Every card below shows what 1,000 calls actually costs on that plan, so a cheaper-looking plan carrying a tenth of the volume cannot hide behind a smaller number.

Plans carry two budgets: total calls, and a smaller allowance for the valuation endpoints - comps, sold history, trends and Flip Score - which is the data we compute rather than collect. Listing calls keep working if you exhaust the valuation allowance, and/api/v1/usagereports both at any time. Batch calls charge one valuation call per item, exactly as if you had sent them one at a time.

- ✓ 100 valuation calls (comps, history, trends, Flip Score)
- ✓ 10 req/sec burst
- ✓ Comps in US, UK, CA, AU
- ✓ 5 underlying sales per call
- ✓ 10 items per batch call
- ✗ Webhooks
- ✗ CSV export

- ✓ 1,000 valuation calls (comps, history, trends, Flip Score)
- ✓ 20 req/sec burst
- ✓ Comps in US, UK, CA, AU
- ✓ 25 underlying sales per call
- ✓ 50 items per batch call
- ✓ 3 webhooks
- ✓ CSV export up to 5,000 rows

- ✓ 10,000 valuation calls (comps, history, trends, Flip Score)
- ✓ 30 req/sec burst
- ✓ Comps in US, UK, CA, AU
- ✓ 50 underlying sales per call
- ✓ 100 items per batch call
- ✓ 10 webhooks
- ✓ CSV export up to 25,000 rows

Bulk historical archives, high call volumes, custom feeds, a data license, or an SLA. Tell us what you're building and we'll shape a plan around it.

Not building against the API? If you want a bulk historical archive, a custom feed, or a commercial data license - for sourcing, valuation, asset recovery, or research - tell us your use case and we'll scope coverage, a sample export, and pricing around it.

See what is in the dataset and what it costs, or ask below.

curl https://govauctions.app/api/v1/listings?country=US&category=vehicles&limit=5 \ -H "Authorization: Bearer YOUR_API_KEY"

Using AI tools? Point ChatGPT Actions or a codegen client at theOpenAPI spec, or add our hosted MCP server below.

Raw listings and webhook payloads cover sanctioned federal sources (GSA Auctions) in the US. Comps, sold history and trends are our own derived aggregates and cover the full surplus market in all four countries.

Medians are checkable, so your users don't have to take anything on faith.

curl "https://govauctions.app/api/v1/comps?q=2015+Ford+F-150&include=comps" \ -H "Authorization: Bearer YOUR_API_KEY" # Pricing a whole basket? One request, one valuation call per item: curl -X POST https://govauctions.app/api/v1/comps/batch \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"queries":["2015 Ford F-150","forklift","Dell Latitude"]}'

Everything else here is pull. Webhooks are the one endpoint that calls you: register an https endpoint with a filter and we POST matching new lots as they enter the feed, twice a day when the data refreshes. Every delivery is signed with HMAC-SHA256 in theX-GovAuctions-Signatureheader. Delivery is at-least-once, so dedupe on lot id.

curl -X POST https://govauctions.app/api/v1/webhooks \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "url": "https://your-app.example.com/hooks/govauctions", "filters": { "category": "vehicles", "state": "TX", "minFlipScore": 70 } }'

The signing secret is returned once, at creation. Store it then - we cannot show it to you again.

We run a hosted MCP server over streamable HTTP, so there is nothing to download or keep running. Works with Claude Code, Claude Desktop, and any client that accepts a remote MCP URL. Start with no key at all:

claude mcp add --transport http govauctions https://govauctions.app/api/mcp

That works as typed. The server will list its tools and answerget_sold_compskeyless with how many comparable sales we hold, the confidence, and a coarse price band - enough for an agent to find out whether we have the data it needs before anyone creates an account.

Add a key when you want the exact p25 / median / p75 numbers and the rest of the tools:

claude mcp add --transport http govauctions https://govauctions.app/api/mcp \ --header "Authorization: Bearer gak_YOUR_KEY"

Or point any other client athttps://govauctions.app/api/mcpand send your key as anAuthorization: Bearerheader. Free keys include 100 valuation calls a month, so the key is a signup, not a paywall.

- search_listings- live GSA federal-surplus lots by state, category, keyword, price, or ZIP radius
- get_listing- one lot by id
- get_sold_comps- sold-price percentiles for an item, in any of the four markets
- get_sold_history- the individual sales behind that number
- get_price_trend- month-by-month medians for an item
- get_flip_score- resale signal for a live lot
- get_comp_coverage- what we can and cannot price
- get_api_usage- remaining budget, so an agent can pace itself

get_sold_comps,get_sold_historyandget_price_trendtake acountryofUS,UK,CAorAU, matched by item within that market so a UK median is built from UK sales rather than converted from US ones.

Every market is on every tier, including Free. There is no regional add-on and no separate contract, and an agent pricing a mixed international basket can do it in one batch call against one key.

Data is provided for your own application use. Redistribution or rebuilding a competing dataset is not permitted. Flip Score and Flip Margin are rough indicators, not investment advice - always inspect, factor transport, and review the listing carefully before bidding.

Search global news using natural language. Webz.io News Search API returns the most relevant articles and content, with filters for source, country, language, date, sentiment, and category.

enables searching and booking car rentals

Search and buy products across thousands of online stores using the SearchAgora universal product search engine.

Integrate with the Amazon Product Advertising API to search for products and access product information.

An AI-powered server for Amazon product search and recommendations.

An MCP server for searching and buying products on Amazon.

Hard-gated, source-linked formalwear discovery for U.S. sizes 22–40 and custom measurements.

A server for product search, price history tracking, and specification search using the BigGo API.

Search, analyze, and compare cat food products with ingredient- and nutrition-based tools.

Search for products and compare prices at Coles and Woolworths supermarkets in Australia.

City hiring-compliance MCP server with regulation search and full audit risk scoring.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.