# datastand.dev Bazaar New Listings Feed

> datastand.dev Bazaar New Listings Feed is a paid API for AI agents from datastand.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the most recently listed or reindexed x402 Bazaar resources, sorted newest first, with price and adoption statistics over a configurable look-back window

## Facts

- Endpoint: GET https://datastand.dev/api/bazaar/trending
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datastand-dev-bazaar-new-listings-feed-0ce6c061
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fEzx_75_IfI-yIzJgBQEG

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 datastand-dev-bazaar-new-listings-feed-0ce6c061
```

Example prompt: Show me what new x402 Bazaar resources have launched in the last 3 days, only including ones with at least 5 unique payers in the last 30 days.

## When to prefer this

Use this endpoint when you need to track what is newly entering the x402 Bazaar — for competitive intelligence, category monitoring, or discovering fresh capabilities to consume. Prefer this over the keyword search endpoint when you want chronological recency rather than relevance ranking, and over the daily market stats endpoint when you want individual resource listings rather than aggregate market metrics.

## Known failure modes

- Invalid or non-numeric 'days' parameter returns an error or empty result
- Extremely short look-back windows (e.g. days=0) may return no results
- Very high min_payers thresholds may filter out all results
- Payment failure or insufficient USDC balance returns 402 error
- Stale index data may cause recently listed resources to not yet appear

## How this service works

What just launched in the x402 economy: the most recently listed or reindexed Bazaar resources, newest first, with price and adoption stats. Track new competitors, spot fresh capabilities to consume, or watch a category fill up. Window configurable in days. `count` is how many listings match your window — `offset`/`limit` page through all of them, up to 100 rows per call.

## Output

A list of recently listed or reindexed x402 Bazaar resources sorted newest first. Each entry includes the resource name, URL, price, and adoption statistics such as unique payer counts, giving a snapshot of what is fresh in the x402 economy over the requested time 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "days": {
       "type": "string",
       "description": "Look-back window in days (default 7)"
      },
      "limit": {
       "type": "string",
       "description": "Rows per page, 1-100 (default 50)"
      },
      "offset": {
       "type": "string",
       "description": "Skip this many listings (default 0). Use page.next_offset from the previous response. A page past the end costs nothing."
      },
      "min_payers": {
       "type": "string",
       "description": "Minimum unique 30-day payers (default 0)"
      }
     }
    }
   },
   "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/datastand-dev-bazaar-new-listings-feed-0ce6c061/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from datastand.dev](https://www.zero.xyz/host/datastand.dev/llms.txt)
