GET
/
farcaster
/
frame
/
notification_tokens
curl --request GET \
  --url https://api.neynar.com/v2/farcaster/frame/notification_tokens \
  --header 'x-api-key: <api-key>'
{
  "notification_tokens": [
    {
      "object": "notification_token",
      "url": "<string>",
      "token": "<string>",
      "status": "enabled",
      "fid": 3,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next": {
    "cursor": "<string>"
  }
}

Authorizations

x-api-key
string
header
default:NEYNAR_API_DOCS
required

API key to authorize requests

Query Parameters

limit
integer
default:20

Number of results to fetch

Required range: 1 <= x <= 100
fids
string

Comma separated list of FIDs, up to 100 at a time. If you pass in FIDs, you will get back the notification tokens for those FIDs. If you don't pass in FIDs, you will get back all the notification tokens for the mini app.

cursor
string

Pagination cursor

Response

200
application/json

Successful operation.

The response is of type object.