Get Position
Get position information.
Platform Support: Available on hyperliquid, aster, lighter. Not available on kuru (spot DEX - no positions).
Authorization
ApiKeyAuth In: header
Query Parameters
Filter to specific symbols (comma-separated)
Response Body
application/json
curl -X GET "https://api.hypereth.io/v2/hyperliquid/getPosition?symbols=BTC%2CETH"{
"positions": [
{
"symbol": "BTC",
"positionSide": "LONG",
"size": "0.01",
"entryPrice": "65000.0",
"markPrice": "65100.0",
"unrealizedPnl": "1.0",
"leverage": "10",
"marginType": "cross",
"dexProcessedTimestamp": 1710000000800
}
],
"dataTime": 1710000000000,
"dexReceivedTimestamp": 1710000000900,
"hyperethTimestamp": 1710000001000
}Get Accounts GET
Get all accounts associated with the API key. **Platform Support**: Available on all supported platforms. This endpoint returns a list of all accounts registered under the current API key, including the default account and any additional accounts configured via `strategy_signers`.
Get User Funding Fee History GET
Retrieve user funding fee payment history. Returns user-specific funding fee payments/receipts. **Platform Support**: Available on hyperliquid, aster, lighter. **Not available on kuru** (spot DEX - no funding fees). **Implementation Notes**: - If neither `startTime` nor `endTime` is provided, defaults to last 7 days - Funding fees are settled at regular intervals (typically every 8 hours) - Positive `fundingFee` indicates fee received (you are receiving funding) - Negative `fundingFee` indicates fee paid (you are paying funding) - Results are sorted by `fundingTime` in descending order (most recent first)