用户标签

GET /api/v1/tag

  • Header

FieldTypeRequiredRemarks

ApiKey

String

true

从管理员获取的 ApiKey

  • Request Parameters

FieldTypeRequiredRemarks

address

String

fasle

EOA Address

twitterUsername

String

fasle

twitter username

steamId

String

fasle

steamId

sig

String

true

用户授权信息签名(签名可参考SIWE,带有授权信息时,开发者可使用 Lit Protocol 对返回结果解密

message

String

true

用户授权信息签名原文(签名原文拼接可参考SIWE,其中statement字段需要为:Access to User Tag.))

  • Request Example

curl  GET 'https://api.relationlabs.ai/api/v1/tag?address=0x9bd286ef4e3d9ec1af6c6ae9da2f0b3617deab13&sig=0x0011111&message=example.com%20wants%20you%20to%20sign%20in%20with...' \
--header 'ApiKey: <ApiKey>'
  • Response Parameters

FieldTypeRemarks

code

String

返回码

desc

String

返回信息

data

EncryptedData

使用 Lit Protocol 加密过的Tag数据,需要向用户申请授权解密

EncryptedData解密后的数据结构

[
  "DAO",
  "Defi",
  "game"
]
  • Response Body

{
  "code": "0",
  "desc": "success",
  "data": {
    "encryptedString": "xxx",
    "encryptedSymmetricKey": "xxx"
  }
}
  • Return Code

codedescRemarks

0

success

the flag for a successful request

Last updated