docs.farcaster.xyz Open in urlscan Pro
76.76.21.93  Public Scan

URL: https://docs.farcaster.xyz/reference/warpcast/api
Submission: On March 20 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

Skip to content
Farcaster
SearchK
Main NavigationLearnDevelopersAuthKitHubbleReference

GitHubTwitterYouTube

Appearance


GitHubTwitterYouTube

Menu
Return to top
Sidebar Navigation


REFERENCE

Overview


FRAMES

Specification


WARPCAST

Channel APIs

Cast Intents

Embeds


HUBBLE

Architecture


DATA TYPES



Messages

Events


GRPC API



Using GRPC APIs

Casts API

Reactions API

Links API

UserData API

Username Proofs API

Verifications API

Message API

Fids API

Storage API

On Chain API

Events API

Sync API


HTTP API



Using HTTP APIs

Info API

Casts API

Reactions API

Links API

UserData API

Username Proofs API

Verifications API

Message API

Fids API

Storage API

On Chain API

Events API

Replicator Schema


CONTRACTS

Overview


REFERENCE



Id Gateway

Id Registry

Key Gateway

Key Registry

Storage Registry

Bundler

Signed Key Request Validator

Deployments

FAQ


FNAME SERVER

API Reference

On this page
Table of Contents for current page



WARPCAST API REFERENCE


GET ALL CHANNELS

Warpcast has the concept of channels which build upon FIP-2 (setting parentUrl
to casts). You can read more about channels in the documentation.

This endpoint provides metadata around all the channels in Warpcast. The
endpoint requires no authentication, does not use any parameters and does not
pagination.

bash

curl https://api.warpcast.com/v2/all-channels | jq

The return object is a JSON array where each channel has the following shape:

json

{
  "id": "lifehacks",
  "url": "https://warpcast.com/~/channel/lifehacks",
  "name": "lifehacks",
  "description": "Tips & tricks for a smoother life journey 🌟",
  "imageUrl": "https://i.imgur.com/Fe0Q1ZJ.png",
  "leadFid": 17672,
  "createdAt": 1702759296
},

Properties:

 * id - The unique channel id that cannot be changed (called 'Name' when
   creating a channel)
 * url - The FIP-2 parentUrl used for main casts in the channel
 * name - The friendly name displayed to users (called 'Display name' when
   editing a channel)
 * description - The description of the channel, if present
 * imageUrl - URL to the channel avatar
 * loadFid - The fid of the user who created the channel, if present (called
   'Host' in Warpcast)
 * createdAt - UNIX time when channel was created, in seconds

Previous pageSpecification
Next pageCast Intents