πExplorer API
We are not currently open to the public for our API application, please submit your information from here and we will configure a dedicated [ DappKeyβ ]
POST /interfa/v1/auth
POST /interfa/v1/auth
Param | Type | Required? | Description |
---|---|---|---|
Token | String | Required | Dappkey acquired from the admin |
Returns a JSON object containing the AccessToken and RefreshToken.
ExampleοΌ
POST /interfa/v1/login/account
POST /interfa/v1/login/account
Param | Type | Required? | Description |
---|---|---|---|
Authorization | String | Required | Get AccessToken from /interfa/v1/auth |
address | String | Required | Wallet Address |
Returns a JSON object providing the user's information, AccountInfo.
ExampleοΌ
POST /interfa/v1/user/relation/list
POST /interfa/v1/user/relation/list
Param | Type | Required? | Description |
---|---|---|---|
Authorization | String | Required | Get AccessToken from /interfa/v1/auth |
pageSize | Int | Required | 20 |
nextToken | String | Required | pageSize can be null if it is 1, otherwise get it in the returned JSON. |
address | String | Required | Wallet Address |
Returns a JSON object, i.e. the user's social data.
ExampleοΌ
POST https://openapi.uxlink.io/interfa/v1/user/wallet/list
POST https://openapi.uxlink.io/interfa/v1/user/wallet/list
Param | Type | Required? | Description |
---|---|---|---|
Authorization | String | Required | Get AccessToken from /interfa/v1/auth |
address | String | Optional | Uxwallet address. Required when field "uxuyId" is missing. |
uxuyId | String | Optioanl | Uxuy ID. Required when field "address" is missing. |
Returns a JSON object providing total reward amount and limit.
ExampleοΌ
POST /interfa/v1/trade2earn
POST /interfa/v1/trade2earn
Param | Type | Required? | Description |
---|---|---|---|
Authorization | String | Required | Get AccessToken from /interfa/v1/auth |
address | String | Required | Wallet Address |
orderId | String | Required | Order ID (business number, trade number, etc. should not duplicate) |
amount | float64 | Required | Amount of reward |
tx | String | Optional | Transaction |
chainType | String | Required when "tx" existed | Chain type. enum(EVM, Non-EVM) |
chainId | string | Required when "tx" existed | EVM Chain ID |
chainName | String | Required when "tx" existed | Chain name, specially for Non-EVM chain. enum(x1, eth, sol, arb, base, polygon, scroll, zksync) |
orderTime | int64 | Required | Order creation timestamp (s) |
orderDesc | String | Optional | Order description maxLength: 255 |
Returns a JSON object providing result of recording.
ExampleοΌ
POST /interfa/v1/trade2earn/summary
POST /interfa/v1/trade2earn/summary
Param | Type | Required? | Description |
---|---|---|---|
Authorization | String | Required | Get AccessToken from /interfa/v1/auth |
Returns a JSON object providing total reward amount and limit.
ExampleοΌ
POST /interfa/v1/trade2earn/subtotal
POST /interfa/v1/trade2earn/subtotal
Param | Type | Required? | Description |
---|---|---|---|
Authorization | String | Required | Get AccessToken from /interfa/v1/auth |
address | String | Required | Wallet Address |
orderIdPrefix | String | Optional | Order ID prefix |
Returns a JSON object providing subtotal reward amount by address and orderId prefix.
ExampleοΌ
Code
Code | Desc | Remarks |
---|---|---|
200 | success | the flag for a successful request |
5001002 | false |
Last updated