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 & LiquidationsVTFsParadex ChainEcosystemREST APIWebSocket APIAgentic AI HubRelease Notes
HomeOverviewDIME UtilityTradingRisk & LiquidationsVTFsParadex 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
        • GETList Subkeys
        • POSTRegister Subkey
        • POSTActivate pending subkey
        • GETGet Subkey
        • PUTUpdate Subkey
        • DELRevoke Subkey
        • PUTUpdate subkey IP allowlist
  • Testnet API Reference
  • Useful Resources
    • Paradex Github
    • Paradex CLI
    • Code Samples
    • Python SDK
    • CCXT Integration
Join CommunityStart Trading
Production API ReferenceSubkey

List Subkeys

GET
https://api.prod.paradex.trade/v1/account/keys/subkeys
GET
/v1/account/keys/subkeys
$curl https://api.prod.paradex.trade/v1/account/keys/subkeys \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "results": [
3 {
4 "account_id": "0x9f8e7d6c5b4a3210",
5 "allowed_cidrs": [
6 "203.0.113.0/24"
7 ],
8 "created_at": 1672531200000000000,
9 "id": 42,
10 "name": "Trading Bot Key",
11 "public_key": "0xabcdef1234567890fedcba0987654321",
12 "revoked_at": 0,
13 "state": "active",
14 "updated_at": 1675123200000000000
15 }
16 ]
17}
Get all subkeys for the authenticated account with optional filtering by status.
Was this page helpful?
Previous

Register Subkey

Next
Built with

Authentication

Authorizationstring
API Key authentication via header

Query parameters

with_revokedbooleanOptional
Include revoked subkeys

Response

List of subkeys
resultslist of objects
Array of results

Errors

400
Bad Request Error
401
Unauthorized Error