manager
metrics
accesslists
boosts
users
- GETuser profile
- GETuser details
- PUTupdate profile
- GETETH earned by user
- PUTupdate notification preferences
- GETfarcaster profile
- GETfarcaster verification status
- POSTadd neynar connection
- DELremove neynar connection
- POSTadd twitter connection
- DELdelete twitter connection
- GETUser notifications
- POSTread notifications
- GETuser rewards
- GETprotocol rewards summary
- GETprotocol rewards earnings
- GETreferrals summary
- GETreferrals earnings
- GETreferrals feed
- GETtotal referral earnings
- GETreferrals activity feed
- GETactive/completed boosts referrals feed
inboxes
manager
metrics
accesslists
boosts
users
- GETuser profile
- GETuser details
- PUTupdate profile
- GETETH earned by user
- DELremove email record
- PUTupdate notification preferences
- POSTread notifications
- GETfarcaster profile
- GETfarcaster verification status
- POSTadd neynar connection
- DELremove neynar connection
- POSTadd twitter connection
- DELdelete twitter connection
- GETuser rewards
- GETprotocol rewards summary
- GETprotocol rewards earnings
- GETreferrals summary
- GETreferrals earnings
- GETreferrals feed
- GETtotal referral earnings
- GETreferrals activity feed
- GETactive/completed boosts referrals feed
inboxes
accesslists
accesslists by user ID
Sort and filter with a query of accesslists for a given user id.
GET
/
boosts
/
accesslists
curl --request GET \
--url https://api-staging.boost.xyz/boosts/accesslists \
--header 'Authorization: Bearer <token>'
{
"accesslists": [
{
"id": "<string>",
"name": "<string>",
"memberCount": 123,
"createdAt": "<string>",
"icon": "<string>"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Special characters like :&|'!()<> are not allowed in the search terms.
Example:
"totalMembers"
Available options:
ASC
, DESC
Response
200
application/json
Success
The response is of type object
.
curl --request GET \
--url https://api-staging.boost.xyz/boosts/accesslists \
--header 'Authorization: Bearer <token>'
{
"accesslists": [
{
"id": "<string>",
"name": "<string>",
"memberCount": 123,
"createdAt": "<string>",
"icon": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.