Farcaster cast lookup
POST /api/fc-castFetch one Farcaster cast by hash or warpcast.com / farcaster.xyz URL. Returns the compact cast: author (fid, username, follower count), text, timestamp, channel, parent hash, likes, recasts, reply count, embed URLs. Use to resolve a shared link, verify a quote, or enrich a cast hash from another tool.
Input
| Field | Type | Description |
|---|---|---|
identifier * | string | Cast hash (0x + 40 hex) or an https warpcast.com / farcaster.xyz cast URL. |
Example output
{
"source": "neynar",
"fetchedAt": "2026-08-22T13:19:12.000Z",
"cached": false,
"rateLimit": {
"limit": 300,
"remaining": 299,
"resetAt": "2026-08-22T13:20:00.000Z"
},
"cast": {
"hash": "0x322c451ed6ff1674328c6164b92166b3d15f2b7d",
"author": {
"fid": 3,
"username": "dwr",
"displayName": "Dan Romero",
"followerCount": 630338
},
"text": "quick let's all open up fc app to cast about fc dead",
"timestamp": "2026-08-20T00:58:40.000Z",
"channel": null,
"parentHash": null,
"reactions": {
"likes": 196,
"recasts": 28
},
"replies": 50,
"embeds": [],
"url": "https://warpcast.com/dwr/0x322c451e"
}
}
Try it - see the 402 challenge (free)
curl -i -X POST https://agent402.tools/api/fc-cast \
-H "Content-Type: application/json" \
-d '{"identifier":"0x322c451ed6ff1674328c6164b92166b3d15f2b7d"}'
The response is HTTP 402 Payment Required with exact payment requirements. Any x402 v2 client pays automatically and retries:
Paid call (JavaScript agent)
import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { registerExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";
const client = new x402Client();
registerExactEvmScheme(client, { signer: privateKeyToAccount(KEY) });
const payFetch = wrapFetchWithPayment(fetch, client);
const res = await payFetch("https://agent402.tools/api/fc-cast", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"identifier": "0x322c451ed6ff1674328c6164b92166b3d15f2b7d"
}),
});
Related tools
Extract article
POST /api/extractExtract the main article content from any public URL as clean markdown. Returns title, byline, excerpt, word count, and …
try in playground →Page metadata
GET /api/metaFetch page metadata for a URL: title, description, OpenGraph, Twitter cards, canonical URL, favicon.
try in playground →Browser render
POST /api/renderRender a page in a real headless Chromium browser (JavaScript executed), then extract the main content as clean markdown…
try in playground →