v1
latestOpenAPI 3.0.42026-07-26159287356.1 KBFrame
Send notifications
Send notifications to interactors of a mini app. By default every broadcast is delivered synchronously and returns 200 with aggregate counts. When the ASYNC_NOTIFICATIONS_ENABLED server flag is on, broadcasts with more than 100 notification tokens are queued and return 202 with a campaign_id instead; poll the campaign stats endpoint for progress. Small broadcasts always stay synchronous.
post/v2/farcaster/frame/notifications/
Request body
Example request
{
"filters": {
"exclude_fids": [
2,
8988
],
"following_fid": 3,
"minimum_user_score": 0.5,
"near_location": {
"latitude": 37.774929,
"longitude": -122.419418,
"radius": 1000
}
},
"notification": {
"body": "You have received a new message in your inbox.",
"target_url": "https://example.com/notifications",
"title": "New Message",
"uuid": "123e4567-e89b-12d3-a456-426614174000"
},
"target_fids": [
1,
2,
3
]
}Response
Success
Example response
{
"retryable_fids": [
3
]
}