Get Tips
GET/tips
Gets the most recent tips on the network
Request
Query Parameters
The number of items to skip. Useful for pagination (page number * limit)
The number of items to fetch
The user ID of the user making the request
Default value: 0
Only include tips to recipients that have this many followers
Only include tips to recipients that are verified
Possible values: [sender, receiver, sender_or_receiver]
Only include tips involving the user's followers in the given capacity. Requires user_id to be set.
Possible values: [sender, receiver]
Only include the most recent tip for a user was involved in the given capacity.
Eg. 'sender' will ensure that each tip returned has a unique sender, using the most recent tip sent by a user if that user has sent multiple tips.
Default value: 0
The minimum Solana slot to pull tips from
Default value: 0
The maximum Solana slot to pull tips from
A list of transaction signatures of tips to fetch
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
sender
object
cover_photo
object
profile_picture
object
The user's Ethereum wallet address for their account
receiver
object
cover_photo
object
profile_picture
object
The user's Ethereum wallet address for their account
{
"data": [
{
"amount": "string",
"sender": {
"album_count": 0,
"artist_pick_track_id": "string",
"bio": "string",
"cover_photo": {
"640x": "string",
"2000x": "string"
},
"followee_count": 0,
"follower_count": 0,
"handle": "string",
"id": "string",
"is_verified": true,
"twitter_handle": "string",
"instagram_handle": "string",
"tiktok_handle": "string",
"verified_with_twitter": true,
"verified_with_instagram": true,
"verified_with_tiktok": true,
"website": "string",
"donation": "string",
"location": "string",
"name": "string",
"playlist_count": 0,
"profile_picture": {
"150x150": "string",
"480x480": "string",
"1000x1000": "string"
},
"repost_count": 0,
"track_count": 0,
"is_deactivated": true,
"is_available": true,
"erc_wallet": "string",
"spl_wallet": "string",
"spl_usdc_wallet": "string",
"spl_usdc_payout_wallet": "string",
"supporter_count": 0,
"supporting_count": 0,
"total_audio_balance": 0,
"wallet": "string"
},
"receiver": {
"album_count": 0,
"artist_pick_track_id": "string",
"bio": "string",
"cover_photo": {
"640x": "string",
"2000x": "string"
},
"followee_count": 0,
"follower_count": 0,
"handle": "string",
"id": "string",
"is_verified": true,
"twitter_handle": "string",
"instagram_handle": "string",
"tiktok_handle": "string",
"verified_with_twitter": true,
"verified_with_instagram": true,
"verified_with_tiktok": true,
"website": "string",
"donation": "string",
"location": "string",
"name": "string",
"playlist_count": 0,
"profile_picture": {
"150x150": "string",
"480x480": "string",
"1000x1000": "string"
},
"repost_count": 0,
"track_count": 0,
"is_deactivated": true,
"is_available": true,
"erc_wallet": "string",
"spl_wallet": "string",
"spl_usdc_wallet": "string",
"spl_usdc_payout_wallet": "string",
"supporter_count": 0,
"supporting_count": 0,
"total_audio_balance": 0,
"wallet": "string"
},
"created_at": "string"
}
]
}