curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '{
"type": "extraAgents",
"user": "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036"
}'
[
{
"name": "Mobile QR",
"address": "0x1715462edd45a87eea74e402428392ffc744eb20",
"validUntil": 1756349176478
},
{
"name": "p1",
"address": "0xd56a73c11336d712403d346c7502f5af29027cda",
"validUntil": 1766846919956
}
]
curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '{
"type": "extraAgents",
"user": "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036"
}'
[
{
"name": "Mobile QR",
"address": "0x1715462edd45a87eea74e402428392ffc744eb20",
"validUntil": 1756349176478
},
{
"name": "p1",
"address": "0xd56a73c11336d712403d346c7502f5af29027cda",
"validUntil": 1766846919956
}
]
info
endpoint with type: "extraAgents"
retrieves information about additional agents or authorized accounts associated with a user’s wallet on the Hyperliquid exchange. This endpoint provides details about delegated permissions, agent activities, and access control configurations for advanced account management.
type
(string, required) — The request type. Must be "extraAgents"
to retrieve extra agents associated with a user.user
(string, required) — Address in 42-character hexadecimal format (e.g., 0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036
).name
(string) — Human-readable label for the agentaddress
(string) — Agent address in 42-character hexadecimal formatvalidUntil
(integer) — Timestamp in milliseconds until which the agent is validcurl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "extraAgents", "user": "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036"}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
[
{
"name": "Mobile QR",
"address": "0x1715462edd45a87eea74e402428392ffc744eb20",
"validUntil": 1756349176478
},
{
"name": "p1",
"address": "0xd56a73c11336d712403d346c7502f5af29027cda",
"validUntil": 1766846919956
}
]
info
endpoint with type: "extraAgents"
is essential for applications that need to:
List of extra agents associated with the user
Was this page helpful?