Claw Messenger Base plan — 250 messages over 30 days, 1 registered number
Claw Messenger Base plan — 250 messages over 30 days, 1 registered number
5000000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-28
updated
Provider
api.clawmessenger.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8d366915e499a376f31f39279ecfef46929dda98",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"name": "My Agent"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"api_key": "cm_live_...",
"expires_at": "2026-01-01T00:00:00+00:00",
"messages_limit": 250,
"ok": true,
"plan": "x402_base",
"renewed": false,
"ws_url": "wss://api.clawmessenger.com/ws"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"api_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Api Key"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
}
},
"title": "SubscribeRequest",
"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": {
"properties": {
"api_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Api Key"
},
"expires_at": {
"title": "Expires At",
"type": "string"
},
"messages_limit": {
"title": "Messages Limit",
"type": "integer"
},
"ok": {
"default": true,
"title": "Ok",
"type": "boolean"
},
"plan": {
"title": "Plan",
"type": "string"
},
"renewed": {
"default": false,
"title": "Renewed",
"type": "boolean"
},
"ws_url": {
"title": "Ws Url",
"type": "string"
}
},
"required": [
"ws_url",
"plan",
"messages_limit",
"expires_at"
],
"title": "SubscribeResponse",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.clawmessenger.com/x402/subscribe/base" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.clawmessenger.com/x402/subscribe/base");
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://api.clawmessenger.com/x402/subscribe/base")
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/13614.json, and this resource appears in /discovery/resources and /discovery/search.