> For the complete documentation index, see [llms.txt](https://cabalspy.gitbook.io/cabalspy-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cabalspy.gitbook.io/cabalspy-docs/kol-data-legacy/solana/transaction/transactions-latest.md).

# Transactions (Latest)

## Latest KOL Transactions – Solana

> Returns the most recent KOL transactions on Solana, up to a specified limit.<br>

```json
{"openapi":"3.0.3","info":{"title":"CabalSpy API","version":"1.0.0"},"tags":[{"name":"Transactions (Latest)"}],"servers":[{"url":"https://api.cabalspy.xyz","description":"Production Server"}],"paths":{"/api/KOL_transaction/latest":{"get":{"tags":["Transactions (Latest)"],"summary":"Latest KOL Transactions – Solana","description":"Returns the most recent KOL transactions on Solana, up to a specified limit.\n","operationId":"getLatestTransactions","parameters":[{"name":"api_key","in":"query","required":true,"description":"Your valid API key","schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"description":"Maximum number of transactions to return (1–100, default 10)","schema":{"type":"integer","minimum":1,"maximum":100,"default":10}}],"responses":{"200":{"description":"Successfully returned","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TransactionSolana"}}}}},"400":{"description":"Invalid or missing parameter","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"403":{"description":"Invalid or exhausted API key","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}},"components":{"schemas":{"TransactionSolana":{"type":"object","properties":{"signature":{"type":"string"},"wallet":{"type":"string"},"mint":{"type":"string"},"token_symbol":{"type":"string"},"transaction_type":{"type":"string","enum":["buy","sell"]},"sol_value":{"type":"number","format":"float","nullable":true},"slot":{"type":"integer","nullable":true},"created_at":{"type":"string","format":"date-time"},"wallet_data":{"type":"object","properties":{"name":{"type":"string"},"wallet_address":{"type":"string"},"telegram":{"type":"string"},"twitter":{"type":"string"},"image_url":{"type":"string"}}}}},"Error":{"type":"object","required":["error"],"properties":{"error":{"type":"string"}}}}}}
```
