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
inboxes
user inboxes
This endpoint will retrieve the given user’s inboxes.
GET
/
users
/
inboxes
curl --request GET \
--url https://api-staging.boost.xyz/users/inboxes \
--header 'Authorization: Bearer <token>'
[
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"draft": true,
"config": {
"features": [
"boost-blitz"
],
"supportedActionTypes": [
"bridge"
],
"projects": [
{
"ids": [
"<string>"
],
"name": "<string>"
}
],
"rewardTokenNetworks": [
"<string>"
],
"rewardTokenAddresses": [
"<any>"
],
"referrerAddress": "<any>",
"theme": {},
"logo": "<string>",
"tags": [
"<string>"
],
"creatorAddresses": [
"<any>"
],
"sortBy": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Success
The response is of type object[]
.
curl --request GET \
--url https://api-staging.boost.xyz/users/inboxes \
--header 'Authorization: Bearer <token>'
[
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"draft": true,
"config": {
"features": [
"boost-blitz"
],
"supportedActionTypes": [
"bridge"
],
"projects": [
{
"ids": [
"<string>"
],
"name": "<string>"
}
],
"rewardTokenNetworks": [
"<string>"
],
"rewardTokenAddresses": [
"<any>"
],
"referrerAddress": "<any>",
"theme": {},
"logo": "<string>",
"tags": [
"<string>"
],
"creatorAddresses": [
"<any>"
],
"sortBy": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
Assistant
Responses are generated using AI and may contain mistakes.