, so every page shipped two description tags and crawlers read this generic one instead of the page's own. Each route sets its own. --> %sveltekit.head%
+ farcaster-channel-data

> Farcaster channel data

// Returns Farcaster channel information including members and recent casts

socialfarcasterchannelcommunity

Returns Farcaster channel information including members and recent casts. Agents can request it by capability ID social.farcaster.channel, or by plain intent — EntRoute resolves phrases like “farcaster channel”, “fc channel” and “warpcast channel” to this capability.

EntRoute currently lists 2 endpoints from 1 provider for social.farcaster.channel, priced at $0.001 per call, settled in USDC on Base. The quickest responds in about 195ms at the 95th percentile. Every endpoint below is re-probed every 10 minutes for a valid 402 payment challenge; the ordering blends measured success rate, latency and price rather than provider claims.

// aliases.json

These phrases resolve to this capability with intent-based discovery.

"farcaster channel" "fc channel" "warpcast channel"
// discover.sh
curl -X POST https://api.entroute.com/discover \
  -H "Content-Type: application/json" \
  -d '{"capability_id": "social.farcaster.channel"}'
// endpoints.json
2 results
#1 Neynar listed
$0.0010
https://api.neynar.com/v2/farcaster/channel/search
success: 100%
latency: 195ms
// sample request
{
  "q": "defi"
}
// sample response
{
  "channels": [
    {
      "id": "defi",
      "name": "DeFi",
      "follower_count": 25000
    },
    {
      "id": "defi-llama",
      "name": "DeFi Llama",
      "follower_count": 10000
    }
  ]
}
#2 Neynar listed
$0.0010
https://api.neynar.com/v2/farcaster/channel
success: 100%
latency: 233ms
// sample request
{
  "id": "ethereum"
}
// sample response
{
  "channel": {
    "id": "ethereum",
    "name": "Ethereum",
    "description": "Ethereum discussion",
    "follower_count": 50000,
    "image_url": "https://..."
  }
}
// integrate.md

Use this capability in your agent or application:

// faq

Frequently asked questions about Farcaster channel data

How much does a farcaster channel data API call cost?

Endpoints listed for social.farcaster.channel on EntRoute are priced at $0.001 per call. Payment is per request — there is no subscription, account or API key. Prices shown are read from each endpoint's live 402 response, not from a provider-supplied catalogue.

How do AI agents pay for farcaster channel data endpoints?

Via the x402 protocol. The agent calls the endpoint, receives an HTTP 402 Payment Required response describing the price and recipient, signs a stablecoin payment (USDC on Base), and retries the request with proof of payment. The whole exchange takes seconds and needs no human approval.

How many providers offer farcaster channel data?

2 endpoints are currently listed for social.farcaster.channel across 1 provider. That number moves as endpoints are added and as failing ones are demoted.

Are these farcaster channel data endpoints verified?

Each one is probed every 10 minutes to confirm it still returns a well-formed 402 challenge on a payable network. Endpoints whose 7-day success rate drops below 50% are moved out of the ranked list into fallbacks with an explicit exclusion reason, so an agent can decide whether to retry them.