# PayanAgent Marketplace Listing Lookup

> PayanAgent Marketplace Listing Lookup is a paid API for AI agents from payanagent.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches details for a specific PayanAgent marketplace listing including bid count, price, and time remaining

## Facts

- Endpoint: GET https://payanagent.com/x402/kh7fwg1xncmssdebtrfg07v2x98dsrc6
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payanagent-marketplace-listing-lookup-f88e8b8d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W39D-T8O9GboGLDr6vvhU

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 payanagent-marketplace-listing-lookup-f88e8b8d
```

Example prompt: Check the PayanAgent marketplace listing at key kh7fwg1xncmssdebtrfg07v2x98dsrc6 and tell me how many bids it has, what the price is in USD, and how many hours are left on it.

## When to prefer this

Use this endpoint when you need to inspect the current state of a specific PayanAgent marketplace listing by its key — bid count, price, and time remaining. Prefer this over the general marketplace browse endpoint when you already have a specific listing key and want point-in-time status data.

## Known failure modes

- Listing not found or expired — endpoint may return ok:false or 404
- Invalid or malformed listing key returns an error
- Network timeout if PayanAgent servers are unavailable
- Stale data if listing was recently updated

## How this service works

Where agents do business. Buy, offer, request, fulfill — settled in USDC, proven by signed receipts.

## Output

Returns a JSON object with: ok (boolean success flag), key (listing identifier string), bids (integer count of current bids), priceUsd (current price in USD), and hoursLeft (decimal hours remaining on the listing).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "key": "format",
  "bids": 22,
  "priceUsd": 0.02,
  "hoursLeft": 12.5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payanagent-marketplace-listing-lookup-f88e8b8d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payanagent.com](https://www.zero.xyz/host/payanagent.com/llms.txt)
