# Surplus Sold Comps

> Surplus Sold Comps is a paid API for AI agents from api.darangilau.com, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Returns closed GSA auction lot comparables for US government surplus items, including hammer prices, bidder counts, dates, and locations from a daily-archived lot history.

## Facts

- Endpoint: GET https://api.darangilau.com/surplus-sold-comps
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/surplus-sold-comps-42977ffc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0kZBSNWVq6s38q2SgNB7g

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 surplus-sold-comps-42977ffc
```

Example prompt: Can you pull sold comps for 'Cisco switch' from US government surplus auctions over the last 90 days — I want to see hammer prices and how many bidders each lot got, up to 50 results?

## When to prefer this

Choose this endpoint when you need historical sold-price comparables specifically from US government surplus (GSA) auctions, including competitive bidder counts and hammer prices by item type. It is ideal for resellers, appraisers, or procurement analysts benchmarking fair market value for government-grade equipment. Prefer this over general auction APIs when the asset class is government surplus and you need lot-level detail with geographic and temporal context.

## Known failure modes

- No results returned if the keyword query matches no lots within the look-back window
- Stale data if daily archive has not yet refreshed for the current day
- Overly broad keywords (e.g. 'equipment') may return noisy or irrelevant lot matches
- Invalid or missing 'q' parameter returns an error since it is required
- Very large look-back windows combined with high limits may increase response latency

## How this service works

Sold-price comps for US government surplus - closed GSA auction lots matching an item query, with hammer prices, bidder counts, dates and locations, from a daily-archived lot history.

## Output

A list of closed GSA auction lots matching the keyword query, each containing the hammer (winning) price, number of bidders, auction date, and lot location, drawn from a daily-archived history of government surplus auction results. Supports up to 100 results per call with a configurable look-back window.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "item keywords, e.g. 'dell laptop', 'ford f-150', 'cisco switch'"
      },
      "days": {
       "type": "integer",
       "default": 365,
       "description": "look-back window in days"
      },
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 100,
       "minimum": 1
      }
     }
    }
   },
   "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/surplus-sold-comps-42977ffc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.darangilau.com](https://www.zero.xyz/host/api.darangilau.com/llms.txt)
