Skip to main content
GET
/
farms
/
users
/
{pubkey}
/
transactions
Get user farms transactions
curl --request GET \
  --url https://api.kamino.finance/farms/users/{pubkey}/transactions
{
  "result": [
    {
      "createdOn": "2023-12-25",
      "transactionSignature": "2XWcSQVtR4NoHBhzYpDkYkmYtEFkFXC5ZwrKiPok1kvA86GvnN15qP7RNP6eTeNWgJqgnR1GA2M3QPp1hucW7e1v",
      "instruction": "claim",
      "tokenAmount": "1234.56789",
      "usdAmount": "1234.56789",
      "farm": "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd",
      "token": "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd"
    }
  ],
  "paginationToken": "<string>"
}

Path Parameters

pubkey
string
required

Valid base58-encoded address of the user wallet

Example:

"AxqtG9SHDkZTLSWg81Sp7VqAzQpRqXtR9ziJ3VQAS8As"

Query Parameters

limit
integer
default:100

Maximum number of results to return (1-1000)

Required range: 1 <= x <= 1000
Example:

100

paginationToken
string

Token for fetching the next page of results

Example:

"eyJsYXN0SWQiOiIxMjM0In0="

noPagination
string

When true, returns all transactions without pagination

Example:

false

sort
enum<string>
default:asc

Sort order (asc for oldest first, desc for newest first)

Available options:
asc,
desc
Example:

"desc"

Response

OK

result
object[]
required
paginationToken
string

Token for fetching the next page. Absent when no more results.