Published fact-checked episodes, newest first, with optional filters by category slug, sho
Published fact-checked episodes, newest first, with optional filters by category slug, show id or speaker slug. Paged.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
holdsup.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x14dDF179048b7e7bF1B80BAF3b2B4D18BA42b38b",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0x14dDF179048b7e7bF1B80BAF3b2B4D18BA42b38b",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "10000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x14dDF179048b7e7bF1B80BAF3b2B4D18BA42b38b",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 5
},
"type": "http"
},
"output": {
"example": {
"episodes": [
{
"id": 4903,
"published_at": "2026-08-30",
"show_id": 3,
"show_title": "Huberman Lab",
"slug": "huberman-lab-cold-exposure",
"title": "Using deliberate cold exposure for health and performance",
"youtube_video_id": "pq6WHJzOkno"
}
],
"has_more": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"category": {
"description": "Category slug; includes its direct children",
"pattern": "^[A-Za-z0-9][A-Za-z0-9._~-]{0,199}$",
"type": "string"
},
"limit": {
"description": "Episodes per page, 1 to 100, default 60",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"page": {
"description": "Page number, from 0",
"maximum": 100000,
"minimum": 0,
"type": "integer"
},
"show": {
"description": "Show id, as listed by list_shows",
"minimum": 0,
"type": "integer"
},
"speaker": {
"description": "Speaker slug",
"pattern": "^[A-Za-z0-9][A-Za-z0-9._~-]{0,199}$",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://holdsup.app/api/v1/episodes" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://holdsup.app/api/v1/episodes");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://holdsup.app/api/v1/episodes")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7146.json, and this resource appears in /discovery/resources and /discovery/search.