Strategy Vault
- Vault Details
- Vault Statistics
- Order Management
Liquidity Provider
- Liquidity Provider Details
- Liquidity Provider Statistics
- Deposit/Withdrawal
- Fees
Strategy Provider
- Key management
- Settle PnL
- Strategy Provider Details
- Deposit/Withdrawal
- Fees
- Period Obligations
Strategy Fund
- Strategy Fund Details
- Period Details
- Fund Transactions
Deposit/Withdrawal
Get Liquidity Provider Transaction History
Limit: 10 requests per second per IP address
GET /v1/public/strategy_vault/lp/transaction_history
GET
/
v1
/
public
/
strategy_vault
/
lp
/
transaction_history
curl --request GET \
--url https://api-sv.orderly.org/v1/public/strategy_vault/lp/transaction_history
{
"success": true,
"timestamp": 1702989203989,
"data": {
"meta": {
"total": 9,
"records_per_page": 25,
"current_page": 1
},
"rows": [
[
{
"created_time": 1734652800000,
"period_number": 4,
"type": "withdrawal",
"status": "claimable",
"est_assign_period_time": null,
"unlock_time": null,
"est_claim_time": null,
"chain_id": "1",
"txn_hash": "0x4dbc4b0cc722d2f401e9a32fe5be7a52c6834785e2084ac78447e94735b8274d",
"txn_hash_claim": null,
"shares_change": 60,
"amount_change": 88.009
},
{
"created_time": 1734566400000,
"period_number": 2,
"type": "withdrawal",
"status": "claimable",
"est_assign_period_time": null,
"unlock_time": null,
"est_claim_time": null,
"chain_id": "1",
"txn_hash": "0x14a8248f38c2530011ba4c826eb1f1db8dad05025be24461bb42f1bc540ac42e",
"txn_hash_claim": "0x14a8248f38c2530011ba4c826eb1f1db8dad05025be24461bb42f1bc540ac42e",
"shares_change": 400,
"amount_change": 572.001
},
{
"created_time": 1734480000000,
"period_number": 1,
"type": "deposit",
"status": "available",
"est_assign_period_time": null,
"unlock_time": null,
"est_claim_time": null,
"chain_id": "1",
"txn_hash": "0x14a8248f38c2530011ba4c826eb1f1db8dad05025be24461bb42f1bc540ac42e",
"txn_hash_claim": null,
"shares_change": 465.83,
"amount_change": 2800.004
}
]
]
}
}
Query Parameters
deposit
/ withdrawal
/ return all if empty
return all if empty
the page you wish to query
the page size you wish to query (max: 500)
Response
200 - application/json
Success
The response is of type object
.
curl --request GET \
--url https://api-sv.orderly.org/v1/public/strategy_vault/lp/transaction_history
{
"success": true,
"timestamp": 1702989203989,
"data": {
"meta": {
"total": 9,
"records_per_page": 25,
"current_page": 1
},
"rows": [
[
{
"created_time": 1734652800000,
"period_number": 4,
"type": "withdrawal",
"status": "claimable",
"est_assign_period_time": null,
"unlock_time": null,
"est_claim_time": null,
"chain_id": "1",
"txn_hash": "0x4dbc4b0cc722d2f401e9a32fe5be7a52c6834785e2084ac78447e94735b8274d",
"txn_hash_claim": null,
"shares_change": 60,
"amount_change": 88.009
},
{
"created_time": 1734566400000,
"period_number": 2,
"type": "withdrawal",
"status": "claimable",
"est_assign_period_time": null,
"unlock_time": null,
"est_claim_time": null,
"chain_id": "1",
"txn_hash": "0x14a8248f38c2530011ba4c826eb1f1db8dad05025be24461bb42f1bc540ac42e",
"txn_hash_claim": "0x14a8248f38c2530011ba4c826eb1f1db8dad05025be24461bb42f1bc540ac42e",
"shares_change": 400,
"amount_change": 572.001
},
{
"created_time": 1734480000000,
"period_number": 1,
"type": "deposit",
"status": "available",
"est_assign_period_time": null,
"unlock_time": null,
"est_claim_time": null,
"chain_id": "1",
"txn_hash": "0x14a8248f38c2530011ba4c826eb1f1db8dad05025be24461bb42f1bc540ac42e",
"txn_hash_claim": null,
"shares_change": 465.83,
"amount_change": 2800.004
}
]
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.