Buy and download a paid status line
Buy and download a paid status line. The publisher sets the price and receives the payment directly with no platform fee. Returns the script, integrity hash, and install instructions. Review the script before installing.
50000 (raw units)
price
5
calls / 30d
3
unique payers
2026-09-17
updated
Provider
claudelines.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb4ad6bb516725ff69594e46c3a7daedf7c473186",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"slug": "cat-walk"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"capabilities": [],
"install": {
"note": "Review the script before installing it.",
"scriptPath": "~/.claude/statuslines/cat-walk",
"scriptUrl": "/api/statuslines/cat-walk/script",
"settings": {
"statusLine": {
"command": "~/.claude/statuslines/cat-walk",
"type": "command"
}
},
"sha256": "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef",
"verify": "Compare the downloaded script SHA-256 with scriptSha256."
},
"name": "Cat Walk",
"script": "#!/bin/sh\nprintf 'example'\n",
"scriptSha256": "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef",
"slug": "cat-walk"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"example": {
"slug": "cat-walk"
},
"properties": {
"slug": {
"example": "cat-walk",
"pattern": "^[a-z0-9]+(?:-[a-z0-9]+){0,7}$",
"type": "string"
}
},
"required": [
"slug"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"capabilities": {
"items": {
"type": "string"
},
"type": "array"
},
"install": {
"additionalProperties": false,
"properties": {
"note": {
"type": "string"
},
"scriptPath": {
"type": "string"
},
"scriptUrl": {
"type": "string"
},
"settings": {
"additionalProperties": false,
"properties": {
"statusLine": {
"additionalProperties": false,
"properties": {
"command": {
"type": "string"
},
"type": {
"const": "command",
"type": "string"
}
},
"required": [
"type",
"command"
],
"type": "object"
}
},
"required": [
"statusLine"
],
"type": "object"
},
"sha256": {
"type": "string"
},
"verify": {
"type": "string"
}
},
"required": [
"scriptUrl",
"scriptPath",
"verify",
"settings",
"note"
],
"type": "object"
},
"name": {
"type": "string"
},
"script": {
"type": "string"
},
"scriptSha256": {
"type": "string"
},
"slug": {
"type": "string"
}
},
"required": [
"slug",
"name",
"capabilities",
"install"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://claudelines.com/api/download" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://claudelines.com/api/download");
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://claudelines.com/api/download")
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/3372.json, and this resource appears in /discovery/resources and /discovery/search.