Skip to main content
GET
/
api
/
sol
/
trades
/
recent
Get recent trades
curl --request GET \
  --url 'https://de.raze.sh/api/sol/trades/recent?apiKey='
{
  "success": true,
  "data": [
    {
      "signature": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "tokenMint": "<string>",
      "signer": "<string>",
      "transactionType": "buy",
      "solAmount": "<string>",
      "solAmountUSD": "<string>",
      "tokensAmount": "<string>",
      "avgPrice": "<string>",
      "avgPriceUSD": "<string>",
      "fee": "<string>",
      "slot": 123,
      "proTrade": true,
      "isBundle": true,
      "isSniper": true,
      "analysisUpdatedAt": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "count": 123,
  "limit": 123,
  "nextCursor": "<string>",
  "hasMore": true,
  "mint": "<string>",
  "signer": "<string>",
  "sort": "asc"
}

Authorizations

apiKey
string
query
required

Query Parameters

limit
integer
default:100

Maximum number of trades to return

Required range: 1 <= x <= 1000
cursor
string

Cursor for efficient pagination. Use the nextCursor value from the previous response to fetch the next page. Preferred over offset for better performance.

offset
integer
default:0

Number of records to skip for pagination. Deprecated - use cursor parameter instead for better performance.

Required range: x >= 0
includeArchive
enum<string>

Include archived data in results. Defaults to true. Set to 'false' to exclude archived data.

Available options:
,

Response

Success

success
boolean
data
object[]
count
integer

Number of trades returned in this response

limit
integer

Maximum number of trades requested

nextCursor
string | null

Cursor to use for fetching the next page of results. Pass this value to the cursor parameter in your next request. Returns null when no more pages are available.

hasMore
boolean

Indicates if there are more records available

mint
string

Present when filtering by mint

signer
string

Present when filtering by signer

sort
enum<string>

Sort order used for the query (asc = oldest first, desc = newest first)

Available options:
asc,
desc