Farcaster API V2
- User
- Signer
- Cast
- Feed
- Reaction
- Notifications
- Channel
- Follows
- Storage
- Mini Apps
- Agents
- Fname
- Webhook
- Action
- Mute
- Block
- Ban
- Onchain
- Login
- Metrics
Onchain
Farcaster Hub API
- Info
- Casts
- Reactions
- Links
- UserData
- Fids
- Storage
- Usernames
- Verifications
- OnChainEvents
- Message
- HubEvents
Neynar SDK
- Getting Started with Neynar NodeJS SDK
- SDK v1 to v2 migration guide
Cast
Fetch composer actions
GET
/
farcaster
/
cast
/
composer_actions
/
list
curl --request GET \
--url https://api.neynar.com/v2/farcaster/cast/composer_actions/list \
--header 'x-api-key: <api-key>'
{
"actions": [
{
"name": "<string>",
"icon": "<string>",
"description": "<string>",
"about_url": "<string>",
"image_url": "<string>",
"action_url": "<string>",
"action": {
"action_type": "<string>",
"post_url": "<string>"
},
"octicon": "<string>",
"added_count": 123,
"app_name": "<string>",
"author_fid": 123,
"category": "<string>",
"object": "<string>"
}
],
"next": {
"cursor": "<string>"
}
}
Authorizations
API key to authorize requests
Query Parameters
Type of list to fetch.
Available options:
top
, featured
Number of results to fetch
Required range:
1 <= x <= 25
Pagination cursor.
Response
200
application/json
List of composer actions
The name of the action.
The icon representing the action.
A brief description of the action.
URL to learn more about the action.
URL of the action's image.
URL to perform the action.
Icon name for the action.
Number of times the action has been added.
Name of the application providing the action.
Author's Farcaster ID.
Category of the action.
Object type, which is "composer_action".
Was this page helpful?
curl --request GET \
--url https://api.neynar.com/v2/farcaster/cast/composer_actions/list \
--header 'x-api-key: <api-key>'
{
"actions": [
{
"name": "<string>",
"icon": "<string>",
"description": "<string>",
"about_url": "<string>",
"image_url": "<string>",
"action_url": "<string>",
"action": {
"action_type": "<string>",
"post_url": "<string>"
},
"octicon": "<string>",
"added_count": 123,
"app_name": "<string>",
"author_fid": 123,
"category": "<string>",
"object": "<string>"
}
],
"next": {
"cursor": "<string>"
}
}