list_offerings
openSearch a catalogue of fixed-scope, fixed-price work delivered by a person. Every result carries a firm price in US cents and a firm turnaround in hours, so you can decide in one step rather than waiting on a quote. Each result states exactly what is included, what is excluded, and what inputs you must supply. Free to call, no API key required, and nothing is booked or charged. Use max_price_cents to stay inside a budget before you commit.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"skill": {
"description": "Optional skill filter. Matched against the fixed taxonomy: code-review, system-design, security-review, technical-writing, data-modelling, devops-review, api-design, prototyping. Near matches are resolved, so \"security audit\" finds security-review. A skill outside the taxonomy returns no results and is recorded, because it tells us what to add next.",
"type": "string",
"maxLength": 120
},
"max_price_cents": {
"description": "Optional ceiling on price, in US cents. 20000 means $200.",
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 100000000
},
"max_turnaround_hours": {
"description": "Optional ceiling on promised turnaround, in hours.",
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 8760
},
"limit": {
"description": "Maximum results to return. Defaults to 10, capped at 25.",
"type": "integer",
"minimum": 1,
"maximum": 25
}
}
}