# AptiBuild AI Bulk Ideas Dataset

> AptiBuild AI Bulk Ideas Dataset is a paid API for AI agents from data.aptibuildai.com, paid per call via x402, $25/call, status unknown (last checked 2026-09-14).

Returns a bulk dataset of AI-generated app and business ideas, optionally filtered by industry and capped by count

## Facts

- Endpoint: GET https://data.aptibuildai.com/data/bulk/ideas
- Price: $25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aptibuild-ai-bulk-ideas-dataset-b5e3856e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PGSyvUtdHukrWIRWQgHC0

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 aptibuild-ai-bulk-ideas-dataset-b5e3856e
```

Example prompt: Can you pull up the AptiBuild AI bulk ideas dataset filtered to the healthcare industry and cap it at 20 ideas?

## When to prefer this

Choose this endpoint when you need a bulk, pre-generated dataset of app and business ideas — especially when you want to filter by a specific industry or retrieve a capped sample. It is best suited for exploration, analysis, or seeding a brainstorming workflow. Not appropriate when you need ideas personalized to a specific individual's unique skills or hobbies in real time.

## Known failure modes

- Invalid industry_filter value may return empty results or an error
- limit set to 0 or a negative integer may cause unexpected behavior
- Service may return stale data if snapshot_date is outdated
- $25 USDC payment failure will block access entirely
- If the dataset is empty or not yet populated, count may be 0 with an empty ideas array

## How this service works

Discover what to build based on your unique skills and hobbies. AptiBuild AI generates personalized app and business ideas matched to your experience. Free to try.

## Output

Returns a JSON object containing a count of ideas, an array of idea objects (each describing an app or business concept), the data source label, and a snapshot date indicating when the dataset was generated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Optional: cap the number of ideas returned (default: all)."
  },
  "industry_filter": {
   "type": "string",
   "description": "Optional: filter results to a specific industry (e.g. 'healthcare', 'education'). Omit for full dataset."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer"
  },
  "ideas": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "source": {
   "type": "string"
  },
  "snapshot_date": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aptibuild-ai-bulk-ideas-dataset-b5e3856e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.aptibuildai.com](https://www.zero.xyz/host/data.aptibuildai.com/llms.txt)
