# Macaroon Network Government Surplus Auction Search

> Macaroon Network Government Surplus Auction Search is a paid API for AI agents from api.macaroonnetwork.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Searches official US government surplus auction listings via the live GSA Auctions API, returning source-linked metadata for equipment, vehicles, machinery, electronics, aircraft, vessels, and other federal surplus assets.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/government-surplus-auction-search-v1
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macaroon-network-government-surplus-auction-search-33c5f127
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CfYNrAQ2zY9MsvPNTfPUT

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability macaroon-network-government-surplus-auction-search-33c5f127 -d '<json body>'
```

Example prompt: Can you search the GSA government surplus auctions for used pickup trucks or light utility vehicles currently up for bid?

## When to prefer this

Choose this endpoint when you need authoritative, official US federal government surplus auction data sourced directly from GSA Auctions. It is the right choice when you specifically want government surplus listings (not commercial marketplaces like eBay) and need public-domain, source-linked metadata for assets including vehicles, machinery, electronics, aircraft, vessels, and scientific equipment.

## Known failure modes

- Query returns no results if no matching active surplus listings exist
- GSA Auctions API downtime or rate limiting may cause failed responses
- Overly broad or ambiguous search terms may return irrelevant listings
- Very niche asset categories may yield sparse or empty results

## How this service works

Search official US government surplus auction listings -- equipment, vehicles, machinery, scientific equipment, electronics, aircraft, vessels, and other surplus assets -- via the live GSA Auctions API. Returns source-linked listing metadata only: no eBay, third-party auction scrapers, or other marketplace data. GSA Auctions API responses are US federal government works, public domain under 17 U.S.C. Section 105.

## Output

Returns source-linked listing metadata from the live GSA Auctions API, including asset descriptions, categories, and direct links to official GSA auction pages. Data is US federal government public domain content. No eBay or third-party marketplace data is included.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macaroon-network-government-surplus-auction-search-33c5f127/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.macaroonnetwork.com](https://www.zero.xyz/host/api.macaroonnetwork.com/llms.txt)
