XPTransfersV2

Get XP Transfer by ID

Retrieve details of a specific XP transfer by its ID. This is a public endpoint that does not require authentication. Note: Private transfers will return 404 (not found) to maintain privacy.

get/xp/transfer/{transfer_id}

Path parameters

transfer_idstring required

Transfer ID

Response

OK

amountinteger

Amount of XP transferred

created_atinteger

Creation timestamp (milliseconds since epoch)

feeinteger

Fee charged for the transfer (deducted from sender's balance)

idstring

Unique transfer identifier

is_privateboolean

Whether the transfer is private (not shown on public feeds)

recipientstring

Address of the recipient (gaining XP)

seasonstring

Season identifier ('season1' for Season 1, 'season2' for Season 2, etc.)

senderstring

Address of the sender (losing XP)

Example response

{
  "amount": 100,
  "created_at": 1640995200000,
  "fee": 1,
  "id": "transfer_123",
  "recipient": "0xfedcba0987654321",
  "season": "season2",
  "sender": "0x1234567890abcdef"
}

Changes

Changed in 3 of the 50 revisions of this API.5

    • added the media type application/json for the response with the status 200

      response-media-type-added

    • added the media type application/json for the response with the status 400

      response-media-type-added

    • added the media type application/json for the response with the status 404

      response-media-type-added

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • removed the non-success response with the status 500

      response-non-success-status-removed

    • endpoint added

      endpoint-added