GET
/
1
/
token
/
first-buyers
Get first buyers for a token
curl --request GET \
  --url https://explorer-api.mobula.io/api/1/token/first-buyers
{
  "data": [
    {
      "address": "<string>",
      "blockchain": "<string>",
      "initialAmount": "<string>",
      "currentBalance": "<string>",
      "firstHoldingDate": "<string>",
      "tags": [
        "<string>"
      ],
      "lastUpdate": "<string>"
    }
  ]
}

Get First Buyers

Returns the first N buyers for a given token, with initial and current balances, and sniper label status.

Query Parameters

  • blockchain (string, optional): Chain identifier (e.g., evm:1).
  • asset (string, required): Token address or asset name.
  • limit (integer, optional): Default 70. Max 100.

Query Parameters

blockchain
string
asset
string
required
limit
number
default:70
Required range: 1 <= x <= 100

Response

200 - application/json

First buyers response

The response is of type object.