Ingestion API
POST /interfa/v2/auth/token
POST /interfa/v2/auth/token
Returns a JSON object containing the AccessToken and RefreshToken.
Param | Type | Required? | Description |
---|---|---|---|
Authorization | String | Required | |
code | String | Required | Code response from redirect url |
state | String | Optional | state |
grant_type | String | Required | authorization_code |
redirect_url | String | Required | Redirect url given to authorization request |
ExampleοΌ
POST /interfa/v2/user/info
POST /interfa/v2/user/info
Returns a JSON object providing the user's information, AccountInfo.
Param | Type | Required? | Description |
---|---|---|---|
Authorization | String | Required | Get AccessToken from /interfa/v2/auth/token |
uxuyId | String | Required | when field "address" is missing. |
ExampleοΌ
POST /interfa/v2/user/relation/list
POST /interfa/v2/user/relation/list
Returns a JSON objects, the user's social relevance.
Param | Type | Required? | Description |
---|---|---|---|
Authorization | String | Required | Get AccessToken from /interfa/v2/auth/token |
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 |
ExampleοΌ
POST /interfa/v2/user/wallet/list
POST /interfa/v2/user/wallet/list
Returns a JSON object providing wallet list of user's, include wallet verification.
Param | Type | Required? | Description |
---|---|---|---|
Authorization | String | Required | Get AccessToken from /interfa/v2/auth/token |
address | String | Optional | Uxwallet address. Required when field "uxuyId" is missing. |
uxuyId | String | Optioanl | Uxuy ID. Required when field "address" is missing. |
ExampleοΌ
Last updated