Skip to main content
GET
/
api
/
v2
/
swap
/
approve
/
spender
GET /api/v2/swap/approve/spender — Get router contract address (EVM only)
curl --request GET \
  --url https://api.shuriken.trade/api/v2/swap/approve/spender \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "chainId": 1,
    "spenderAddress": "<string>"
  },
  "requestId": "<string>",
  "pagination": {
    "hasMore": true,
    "limit": 1,
    "page": 1,
    "total": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.shuriken.trade/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer <jwt> for user auth or Authorization: Bearer sk_{keyId}_{secret} for API key auth.

Query Parameters

chainId
integer<int64>
required

EVM chain ID (8453=Base, 56=BSC)

Required range: x >= 0

Response

200 - application/json

Spender address

V2 success response envelope

data
object
required
requestId
string
required
pagination
object

Page-based pagination info (per RFC)