Skip to main content
POST
/
token-launch
/
fee-share
/
wallet
/
v2
/
bulk
Get fee share wallets (bulk, v2)
curl --request POST \
  --url https://public-api-v2.bags.fm/api/v1/token-launch/fee-share/wallet/v2/bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "items": [
    {
      "username": "<string>",
      "provider": "twitter"
    }
  ]
}
'
{
  "success": true,
  "response": [
    {
      "username": "<string>",
      "provider": "twitter",
      "platformData": {
        "id": "<string>",
        "username": "<string>",
        "display_name": "<string>",
        "avatar_url": "<string>"
      },
      "wallet": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key authentication. Provide your API key as the header value.

Body

application/json
items
object[]
required

Array of lookups (1-100). Duplicate username+provider combinations are not allowed.

Required array length: 1 - 100 elements

Response

Successfully retrieved wallet addresses for all requested items

success
enum<boolean>
required
Available options:
true,
false
response
object[]
required

Per-item results matching the input order