Skip to content

Connect Methods

GET
/api/v1/crypto/connect-methods
curl --request GET \
--url https://api.parasta.io/api/v1/crypto/connect-methods \
--header 'Authorization: Bearer <token>'

Get available crypto connection methods (PortX, OAuth, WalletConnect).

OK

Media type application/json
Example
{
"status": "ok",
"data": {
"methods": [
{
"id": "portx",
"name": "PortX (Gate.io)"
},
{
"id": "oauth",
"name": "OAuth (OKX)"
},
{
"id": "walletconnect",
"name": "WalletConnect"
}
]
}
}