list_ideas
List all Idea Machine ideas (free). Each entry includes status (available|sold), prices, and the x402 endpoints for the paid actions.
Parameters2
| status | string | optional | Filter by sale status (default: all) |
| limit | integer | optional | Max ideas to return, newest first (default 50) |
Raw schema
{
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"available",
"sold",
"all"
],
"description": "Filter by sale status (default: all)"
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 200,
"description": "Max ideas to return, newest first (default 50)"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}