Get borrow order fills for an obligation
curl --request GET \
--url https://api.kamino.finance/v2/kamino-market/obligations/{pubkey}/borrow-order-fillsconst options = {method: 'GET'};
fetch('https://api.kamino.finance/v2/kamino-market/obligations/{pubkey}/borrow-order-fills', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.kamino.finance/v2/kamino-market/obligations/{pubkey}/borrow-order-fills"
response = requests.get(url)
print(response.text)false{
"fills": [
{
"eventType": "partial_fill",
"eventTimestamp": "2023-12-25",
"transactionSignature": "2XWcSQVtR4NoHBhzYpDkYkmYtEFkFXC5ZwrKiPok1kvA86GvnN15qP7RNP6eTeNWgJqgnR1GA2M3QPp1hucW7e1v",
"debtLiquidityMint": "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd",
"filledAmount": "1234.56789"
}
]
}{
"error": "Invalid query request",
"details": [
{
"code": "invalid_union",
"errors": [
[
{
"code": "custom",
"path": [],
"message": "Invalid date string"
}
],
[
{
"expected": "number",
"code": "invalid_type",
"path": [],
"message": "Invalid input: expected number, received string"
}
]
],
"path": [
"start"
],
"message": "Invalid input"
}
]
}{
"error": "An internal error occurred"
}Kamino Lend Borrow Orders
Get borrow order fills for an obligation
Returns the fill history for the active borrow order of an obligation, in chronological order.
GET
/
v2
/
kamino-market
/
obligations
/
{pubkey}
/
borrow-order-fills
Get borrow order fills for an obligation
curl --request GET \
--url https://api.kamino.finance/v2/kamino-market/obligations/{pubkey}/borrow-order-fillsconst options = {method: 'GET'};
fetch('https://api.kamino.finance/v2/kamino-market/obligations/{pubkey}/borrow-order-fills', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.kamino.finance/v2/kamino-market/obligations/{pubkey}/borrow-order-fills"
response = requests.get(url)
print(response.text)false{
"fills": [
{
"eventType": "partial_fill",
"eventTimestamp": "2023-12-25",
"transactionSignature": "2XWcSQVtR4NoHBhzYpDkYkmYtEFkFXC5ZwrKiPok1kvA86GvnN15qP7RNP6eTeNWgJqgnR1GA2M3QPp1hucW7e1v",
"debtLiquidityMint": "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd",
"filledAmount": "1234.56789"
}
]
}{
"error": "Invalid query request",
"details": [
{
"code": "invalid_union",
"errors": [
[
{
"code": "custom",
"path": [],
"message": "Invalid date string"
}
],
[
{
"expected": "number",
"code": "invalid_type",
"path": [],
"message": "Invalid input: expected number, received string"
}
]
],
"path": [
"start"
],
"message": "Invalid input"
}
]
}{
"error": "An internal error occurred"
}