Skip to main content
GET
/
trading-lite
/
{address}
Get simplified token analysis with security indicators
curl --request GET \
  --url https://api.webacy.com/trading-lite/{address} \
  --header 'x-api-key: <api-key>'
{
  "CA": "Cyiojx5i3ovsg4cztj95rJnrDm5sGysFfzAxbzzqpump",
  "DA": "A3C1t5nyLRA97wLL8K2CX2DpbytYz3mvdEoKsUvv8iiV",
  "Top10Holders": 0,
  "SniperPercentageOnLaunch": 100,
  "SniperAddresses": [
    {
      "address": "BwWK17cbHxwWBKZkUYvzxLcNQ1YVyaFezduWbtm2de6s",
      "initiallyAcquiredPercentage": 100,
      "initiallyAcquiredAmount": 1000000000,
      "currentHoldingPercentage": 0,
      "currentHoldingAmount": 0
    },
    {
      "address": "A3C1t5nyLRA97wLL8K2CX2DpbytYz3mvdEoKsUvv8iiV",
      "initiallyAcquiredPercentage": 0.42,
      "initiallyAcquiredAmount": 4218109.144397,
      "currentHoldingPercentage": 0,
      "currentHoldingAmount": 0
    },
    {
      "address": "Fmn5wACZ9XFfqxN5fwoRWM1PHoAf2MHS9dM5V8TkHvrm",
      "initiallyAcquiredPercentage": 1.41,
      "initiallyAcquiredAmount": 14008360.953136,
      "currentHoldingPercentage": 0,
      "currentHoldingAmount": 0
    },
    {
      "address": "F4nx9DbZxQhR2nf8TfRnZ9hFxWJa9tC2BK6ZVrEG2ky9",
      "initiallyAcquiredPercentage": 0,
      "initiallyAcquiredAmount": 207.371291,
      "currentHoldingPercentage": 0,
      "currentHoldingAmount": 0
    }
  ],
  "BundlerAddresses": [
    {
      "address": "BwWK17cbHxwWBKZkUYvzxLcNQ1YVyaFezduWbtm2de6s",
      "initiallyAcquiredPercentage": 100,
      "initiallyAcquiredAmount": 1000000000,
      "currentHoldingPercentage": 0,
      "currentHoldingAmount": 0
    },
    {
      "address": "A3C1t5nyLRA97wLL8K2CX2DpbytYz3mvdEoKsUvv8iiV",
      "initiallyAcquiredPercentage": 0.42,
      "initiallyAcquiredAmount": 4218109.144397,
      "currentHoldingPercentage": 0,
      "currentHoldingAmount": 0
    },
    {
      "address": "Fmn5wACZ9XFfqxN5fwoRWM1PHoAf2MHS9dM5V8TkHvrm",
      "initiallyAcquiredPercentage": 1.41,
      "initiallyAcquiredAmount": 14008360.953136,
      "currentHoldingPercentage": 0,
      "currentHoldingAmount": 0
    },
    {
      "address": "F4nx9DbZxQhR2nf8TfRnZ9hFxWJa9tC2BK6ZVrEG2ky9",
      "initiallyAcquiredPercentage": 0,
      "initiallyAcquiredAmount": 207.371291,
      "currentHoldingPercentage": 0,
      "currentHoldingAmount": 0
    }
  ],
  "SniperPercentageHolding": 0,
  "SniperConfidence": 46,
  "BundlerPercentageOnLaunch": 100,
  "BundlerPercentageHolding": 0,
  "TotalHolders": 1,
  "DexScreenerPaid": false,
  "DevHoldingPercentage": 0,
  "DevLaunched24Hours": 0,
  "mintable": false,
  "freezable": false,
  "lastAnalyzedSlot": 123456789,
  "analysisTimestamp": 1702483200000
}

Authorizations

x-api-key
string
header
required

Path Parameters

address
string
required

Token mint address

Query Parameters

chain
enum<string>
required

Blockchain identifier (currently only 'sol' is supported)

Available options:
sol
refreshCache
boolean

Force refresh cached analysis data

Response

Success

Lightweight trading analysis including sniper and bundler detection for early token activity

CA
string
required

Contract address of the token

DA
string
required

Deployer address

Top10Holders
number
required

Percentage held by the top 10 holders at analysis time

SniperPercentageOnLaunch
number
required

Percentage of supply acquired by snipers at launch

SniperAddresses
object[]
required

Addresses flagged as potential snipers

BundlerAddresses
object[]
required

Addresses flagged as coordinated buyers/bundlers

SniperPercentageHolding
number
required

Current percentage of supply held by snipers

SniperConfidence
number | null
required

Confidence score (0-100) for sniper detection

BundlerPercentageOnLaunch
number
required

Percentage of supply acquired by bundlers at launch

BundlerPercentageHolding
number
required

Current percentage of supply held by bundlers

TotalHolders
number
required

Total number of holders at analysis time

DexScreenerPaid
boolean
required

Whether the project has paid for DexScreener promotion

DevHoldingPercentage
number
required

Current holding percentage of the deployer/developer

DevLaunched24Hours
number
required

Number of tokens launched by the deployer in the last 24 hours

mintable
boolean
required

Whether the token can still be minted. True if mint authority is not renounced. False indicates the token supply is permanently fixed.

freezable
boolean
required

Whether token accounts can be frozen. True if freeze authority is not renounced. False indicates accounts cannot be frozen by the issuer.

lastAnalyzedSlot
number | null

Last analyzed slot number from the bundling/sniper detection. Used by real-time monitoring to know where to start listening from.

analysisTimestamp
number | null

Timestamp (milliseconds since epoch) when this analysis was performed. Used for cache invalidation and freshness checks.