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
        • GETGet XP Balance (V2)
        • GETGet Transfer Fee Configuration
        • GETGet Public XP Transfer History
        • POSTCreate XP Transfer
        • GETGet XP Transfer by ID
        • GETGet XP Transfer History
  • Testnet API Reference
  • Useful Resources
    • Paradex Github
    • Paradex CLI
    • Code Samples
    • Python SDK
    • CCXT Integration
Join CommunityStart Trading
Production API ReferenceXp Transfers V2

Create XP Transfer

POST
https://api.prod.paradex.trade/v1/xp/transfer
POST
/v1/xp/transfer
$curl -X POST https://api.prod.paradex.trade/v1/xp/transfer \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "amount": 100,
> "recipient": "0x1234567890abcdef0123456789abcdef"
>}'
1{
2 "transfer": {
3 "amount": 100,
4 "created_at": 1640995200000,
5 "fee": 1,
6 "id": "transfer_123",
7 "is_private": false,
8 "recipient": "0xfedcba0987654321",
9 "season": "season2",
10 "sender": "0x1234567890abcdef"
11 }
12}
Transfer XP instantly from your account to another user.
Was this page helpful?
Previous

Get XP Transfer by ID

Next
Built with

Authentication

Authorizationstring
API Key authentication via header

Request

Transfer details
amountintegerRequired>=1

Amount of XP to transfer (must be >= 1)

recipientstringRequired

Recipient’s Starknet address (hex format)

is_privatebooleanOptionalDefaults to false

Whether the transfer is private (not shown on public feeds). Defaults to false if not provided.

seasonstringOptionalDefaults to season2
Season identifier. Defaults to season2 if not provided.

Response

Transfer created successfully
transferobject
The created XP transfer

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error