Skip to main content
POST
/
botting
/
bulk
Analyze multiple tokens for view botting patterns
curl --request POST \
  --url https://api.livesuite.app/botting/bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "mintIds": [
    "AxSMXaM3KeQ3a6HDfGizJaRnzGqrDHJg3uyZbwZUpump",
    "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
  ]
}
'
{
  "success": true,
  "data": {
    "results": [
      {
        "mintId": "AxSMXaM3KeQ3a6HDfGizJaRnzGqrDHJg3uyZbwZUpump",
        "confidence": 75.5,
        "confidenceLevel": "HIGH",
        "score": 0.755,
        "reasons": [
          "Instant spike to 1000+ viewers",
          "Uncorrelated with market cap"
        ],
        "processingTime": 1250,
        "timestamp": "2024-01-15T10:30:00.000Z"
      }
    ],
    "errors": [
      {
        "mintId": "InvalidMintId123",
        "error": "No data available for analysis"
      }
    ],
    "summary": {
      "totalRequested": 10,
      "successful": 8,
      "failed": 2,
      "processingTime": 5000,
      "averageConfidence": 45.2
    }
  },
  "timestamp": "2024-01-15T10:30:00.000Z"
}

Authorizations

x-api-key
string
header
required

API key for API authentication

Body

application/json
mintIds
string[]
required

Array of token mint IDs to analyze

Required array length: 1 - 50 elements
Required string length: 32 - 44
Example:
[
"AxSMXaM3KeQ3a6HDfGizJaRnzGqrDHJg3uyZbwZUpump",
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
]
hours
integer
default:24

Hours of data to analyze (1-168)

Required range: 1 <= x <= 168
Example:

24

chain
enum<string>
default:solana

Blockchain chain (solana for PumpFun, base for Zora)

Available options:
solana,
base
Example:

"solana"

platform
enum<string>
default:pumpfun

Platform (pumpfun for Solana, zora for Base)

Available options:
pumpfun,
zora
Example:

"pumpfun"

Response

Bulk botting analysis results

success
boolean
Example:

true

data
object
timestamp
string<date-time>
Example:

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