latesttime

GET /api/KOL_transaction/latesttime_base Description: Retrieves transactions across all mint addresses within a specified time window (5–100 seconds).Query Parameters

Parameter

Type

Required

Description

api_key

String

Yes

API key for authentication.

seconds

Integer

No

Time window in seconds (5–100, default 5).

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:

  • 403 Forbidden:

Example Request

Example Response

Notes

  • Responses are cached for 5 seconds.

  • Returns transactions in descending order by timestamp.

Last updated