For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Join CommunityStart Trading
HomeOverviewDIME UtilityTradingRisk & LiquidationsParadex ChainEcosystemREST APIWebSocket APIAgentic AI HubRelease Notes
HomeOverviewDIME UtilityTradingRisk & LiquidationsParadex ChainEcosystemREST APIWebSocket APIAgentic AI HubRelease Notes
  • General Information
    • Server Location
    • Server URLs
    • Quick Start
    • Authentication
    • Rate Limits
    • Benchmarks
    • API Authentication
    • API Best Practices
  • Production API Reference
        • GETGet staking configuration
        • GETList account staking history
        • GETGet account staking summary
  • Testnet API Reference
  • Useful Resources
    • Paradex Github
    • Paradex CLI
    • Code Samples
    • Python SDK
    • CCXT Integration
Join CommunityStart Trading
Production API ReferenceStaking

List account staking history

GET
https://api.prod.paradex.trade/v1/staking/history
GET
/v1/staking/history
$curl https://api.prod.paradex.trade/v1/staking/history \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "results": [
3 {
4 "account": "0x9f8e7d6c5b4a3210fedcba9876543210abcdef12",
5 "amount": "125000",
6 "created_at": 1688208000000000000,
7 "last_updated_at": 1688294400000000000,
8 "lock_duration": 604800,
9 "stake_id": "0xdef456789abc1234567890abcdef1234567890ab",
10 "stake_txn_hash": "0x5a3f2b1c4d6e7f890123456789abcdef1234567890abcdef1234567890abcd",
11 "staked_at": 1688208000000000000,
12 "unstake_req_txn_hash": "0x7b8c9d0e1f2a3b4c5d6e7f8091a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0",
13 "unstake_requested_at": 1688889600000000000,
14 "unstake_txn_hash": "0x1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b",
15 "unstaked_at": 1688976000000000000
16 },
17 {
18 "account": "0x9f8e7d6c5b4a3210fedcba9876543210abcdef12",
19 "amount": "75000",
20 "created_at": 1685529600000000000,
21 "last_updated_at": 1685616000000000000,
22 "lock_duration": 2592000,
23 "stake_id": "0xabc789def4561234567890abcdef1234567890cd",
24 "stake_txn_hash": "0x3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d",
25 "staked_at": 1685529600000000000,
26 "unstake_req_txn_hash": "",
27 "unstake_requested_at": 0,
28 "unstake_txn_hash": "",
29 "unstaked_at": 0
30 }
31 ]
32}
Returns all staking entries for the authenticated account including active, unstaking, and unstaked
Was this page helpful?
Previous

Get account staking summary

Next
Built with

Authentication

Authorizationstring
API Key authentication via header

Response

OK
resultslist of objects
Array of results

Errors

401
Unauthorized Error