Ask a ChatRIP legend with one x402 USDC payment
Ask a ChatRIP legend with one x402 USDC payment.
70000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
chatrip.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xA8FEd285ebB73CD894539Ea33A0C0eb058AD957C",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "70000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"legendSlug": "marcus-aurelius",
"prompt": "What should I remember today?"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"citations": [],
"conversationId": "54fda827-121b-4c38-837d-1b5a74c3554c",
"message": {
"citations": [],
"finishReason": "stop",
"id": "e2f84b1e-4f65-40e1-bc58-c03a61623d1c",
"role": "assistant",
"suggestedPrompts": [
"How should I handle distraction today?",
"What virtue should I practice first?"
],
"text": "Begin with the judgment you can govern. Let the rest arrive as weather, not command."
},
"model": "zai/glm-5.2",
"persona": {
"displayName": "Marcus Aurelius",
"slug": "marcus-aurelius"
},
"requestId": "b8f9c8a1-8c31-4b7e-90ef-8462b8d18ec4",
"suggestedPrompts": [
"How should I handle distraction today?",
"What virtue should I practice first?"
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"legend": {
"description": "Alias for legendSlug.",
"type": "string"
},
"legendSlug": {
"description": "The ChatRIP legend slug to ask, such as marcus-aurelius or maya-angelou.",
"type": "string"
},
"personaSlug": {
"description": "Alias for legendSlug.",
"type": "string"
},
"prompt": {
"description": "The question or reflection prompt to send to the legend.",
"type": "string"
}
},
"required": [
"legendSlug",
"prompt"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"citations": {
"type": "array"
},
"conversationId": {
"type": "string"
},
"message": {
"properties": {
"citations": {
"type": "array"
},
"finishReason": {
"type": "string"
},
"id": {
"type": "string"
},
"role": {
"type": "string"
},
"suggestedPrompts": {
"items": {
"type": "string"
},
"type": "array"
},
"text": {
"type": "string"
}
},
"type": "object"
},
"model": {
"type": "string"
},
"persona": {
"properties": {
"displayName": {
"type": "string"
},
"slug": {
"type": "string"
}
},
"type": "object"
},
"requestId": {
"type": "string"
},
"suggestedPrompts": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"requestId",
"conversationId",
"persona",
"message",
"model"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://chatrip.app/api/v1/legends/chat/x402" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://chatrip.app/api/v1/legends/chat/x402");
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://chatrip.app/api/v1/legends/chat/x402")
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/11005.json, and this resource appears in /discovery/resources and /discovery/search.