Skip to main content
POST
/
stats
/
creator-fees
/
bulk
Get creator fees for multiple tokens
curl --request POST \
  --url https://api.livesuite.app/stats/creator-fees/bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "tokenAddresses": [
    "AxSMXaM3KeQ3a6HDfGizJaRnzGqrDHJg3uyZbwZUpump",
    "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
  ]
}
'
{
  "success": true,
  "data": [
    {
      "tokenAddress": "AxSMXaM3KeQ3a6HDfGizJaRnzGqrDHJg3uyZbwZUpump",
      "creatorAddress": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
      "totalFees": 45000,
      "currency": "USD",
      "feesInSOL": 2250
    }
  ],
  "errors": [
    {
      "tokenAddress": "InvalidToken123",
      "error": "Token not found"
    }
  ],
  "summary": {
    "totalRequested": 10,
    "successful": 8,
    "failed": 2
  },
  "timestamp": "2024-01-15T10:30:00.000Z"
}

Authorizations

x-api-key
string
header
required

API key for API authentication

Body

application/json
tokenAddresses
string[]
required

Array of token mint addresses

Required array length: 1 - 100 elements
Required string length: 32 - 44
Example:
[
"AxSMXaM3KeQ3a6HDfGizJaRnzGqrDHJg3uyZbwZUpump",
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
]

Response

Bulk creator fees information

success
boolean
Example:

true

data
object[]

Creator fees for each token

errors
object[]

Errors for tokens that couldn't be processed

summary
object
timestamp
string<date-time>
Example:

"2024-01-15T10:30:00.000Z"