Raw schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Free-text task or keyword search. Common shorthands are expanded (tts, scrape, llm, and similar)."
},
"kind": {
"type": "string",
"enum": [
"any",
"dataset",
"api",
"workflow",
"native",
"open_model"
],
"default": "any",
"description": "Listing kind. any covers dataset, api, workflow, and native; open_model is queried separately."
},
"sort": {
"type": "string",
"enum": [
"relevance",
"quality",
"newest",
"price_asc",
"price_desc",
"popular"
],
"default": "relevance"
},
"limit": {
"type": "number",
"default": 20,
"description": "Max results per page (1 to 50)."
},
"cursor": {
"type": "string",
"description": "Opaque cursor from the previous response page.cursor."
},
"max_price_usdc": {
"type": "number",
"description": "Only listings at or under this USDC price."
},
"free_only": {
"type": "boolean",
"description": "Only free listings (free datasets, free-tier providers)."
},
"verified_only": {
"type": "boolean",
"description": "Only Sella-verified listings."
},
"min_quality": {
"type": "number",
"description": "Minimum quality score 0 to 1. Listings without a score are excluded when set."
},
"chain": {
"type": "string",
"description": "APIs only: settlement chain, e.g. base, solana, stellar."
},
"domain_type": {
"type": "string",
"description": "APIs only: domain code A1 to A22 (see describe_catalog)."
},
"product_class": {
"type": "string",
"description": "APIs only: product class B1 to B6."
},
"category": {
"type": "string",
"description": "Datasets only: category name."
},
"tier": {
"type": "string",
"enum": [
"free",
"standard",
"premium",
"enterprise"
],
"description": "Datasets only."
},
"modality": {
"type": "string",
"enum": [
"structured",
"document"
],
"description": "Datasets only."
},
"format": {
"type": "string",
"enum": [
"csv",
"tsv",
"json",
"jsonl",
"parquet",
"txt",
"md",
"pdf"
],
"description": "Datasets only."
},
"required_fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "Datasets only: schema fields that must exist before purchase."
},
"apply_policy": {
"type": "boolean",
"default": true,
"description": "When authenticated with a configured policy, results are pre-filtered to what you can buy. Set false to browse the full catalogue."
}
},
"additionalProperties": false
}