# Demandex Brief — Job Market Bundle

> Demandex Brief — Job Market Bundle is a paid API for AI agents from api.demandex.dev, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns a bundled job-market intelligence report: trending demand signals, top 10 highest-scored open opportunities, and per-category opportunity counts, optionally filtered by category.

## Facts

- Endpoint: GET https://api.demandex.dev/v1/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/demandex-brief-job-market-bundle-3b2cf9c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zDkzPb2gZKVMuLUFpsgUs

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 demandex-brief-job-market-bundle-3b2cf9c7
```

Example prompt: Give me the full Demandex market brief right now — trending demand signals, the top 10 open opportunities, and how many opportunities exist per category, filtered to the 'design' category for the opportunities section.

## When to prefer this

Choose this endpoint when you need a comprehensive, bundled market overview in a single call rather than making multiple separate requests to /v1/gauge, /v1/opportunities, or /v1/top. At $0.25 USDC it replaces several paid calls and is ideal for agents that need a full market snapshot — trending signals, ranked opportunities, and category counts — at once. Prefer it for dashboards, daily briefings, or any workflow that needs all three data types together.

## Known failure modes

- Unknown category slug returns a 400 error (no charge) listing valid category slugs
- Index still warming: no trending signals or open opportunities returns a no-charge response
- Payment failure or missing x402 payment header results in a 402 response
- Network or server errors return standard 5xx responses

## How this service works

Whole-job market brief for agents. One payment returns current trending demand signals, the top 10 highest-scored open opportunities (optionally filtered by category), and per-category counts — equivalent to several separate paid calls. Pass ?category= to restrict the opportunities section to one category slug (an unknown slug returns a no-charge 400 listing the known categories). While the index is still warming and there are no trending signals and no open opportunities, you get a no-charge 5…

## Output

A bundled JSON response containing: (1) current trending demand signals, (2) top 10 highest-scored open opportunity cards (optionally scoped to one category), and (3) per-category opportunity counts. If the index is still warming and there are no signals or opportunities, a no-charge response is returned. An unknown category slug returns a no-charge 400 error listing all valid category slugs.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "category": {
       "type": "string",
       "description": "Restrict opportunities to one category slug. Unknown → no-charge 400 listing valid categories."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "charged": true,
  "trending": [
   {
    "id": "ckxxxx",
    "slug": "sony-wh1000xm5-replacement-headband",
    "score": 87.4,
    "title": "Sony WH-1000XM5 replacement headband",
    "category": "audio",
    "lastSeen": "2026-07-18T10:00:00.000Z",
    "signalCount": 34
   }
  ],
  "categories": [
   {
    "category": "audio",
    "openCount": 12
   }
  ],
  "generatedAt": "2026-07-18T11:45:00.000Z",
  "trendingAsOf": "2026-07-18T11:45:00.000Z",
  "categoriesAsOf": "2026-07-18T11:45:00.000Z",
  "topOpportunities": [
   {
    "id": "ckxxxx",
    "slug": "sony-wh1000xm5-replacement-headband",
    "score": 87.4,
    "title": "Sony WH-1000XM5 replacement headband",
    "summary": "Owners repeatedly seek an aftermarket replacement headband after the OEM band cracks.",
    "category": "audio",
    "lastSeen": "2026-07-18T10:00:00.000Z",
    "signalCount": 34
   }
  ],
  "opportunitiesAsOf": "2026-07-18T11:45:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/demandex-brief-job-market-bundle-3b2cf9c7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.demandex.dev](https://www.zero.xyz/host/api.demandex.dev/llms.txt)
