latest

GET /api/KOL_transaction/latest_base Description: Retrieves the most recent transactions across all mint addresses, up to a specified limit (1–100).Query Parameters

Parameter

Type

Required

Description

api_key

String

Yes

API key for authentication.

limit

Integer

No

Number of transactions to return (1–100, default 10).

Response

  • Status Code: 200 OK

  • Content-Type: application/json

  • Body:

[
  {
    "signature": "string",
    "wallet": "string",
    "mint": "string",
    "token_symbol": "string",
    "transaction_type": "string",
    "base_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:

Returned when the limit parameter is out of range.

  • 403 Forbidden:

Example Request

Example Response

Notes

  • Responses are cached for 5 seconds.

  • Wallet metadata fields may be empty if not available.

Last updated