transaction

GET /api/Token/KOL_transaction_bnb Description: Retrieves all transactions for a specific mint address, enriched with wallet metadata.Query Parameters

Parameter

Type

Required

Description

api_key

String

Yes

API key for authentication.

mint

String

Yes

Mint address to filter transactions.

Response

  • Status Code: 200 OK

  • Content-Type: application/json

  • Body:

[
  {
    "signature": "string",
    "wallet": "string",
    "mint": "string",
    "token_symbol": "string",
    "transaction_type": "string",
    "bnb_value": number,
    "slot": integer,
    "created_at": "string",
    "wallet_data": {
      "name": "string",
      "wallet_address": "string",
      "telegram": "string",
      "twitter": "string",
      "image_url": "string"
    }
  },
  ...
]

Error Responses

  • 400 Bad Request:

  • 403 Forbidden:

Example Request

Example Response

Notes

  • Responses are cached for 5 seconds.

  • Duplicate transactions are filtered using signature checks.

Last updated