Relation Graph API
Relation ProtocolRelation ONE APIRelation Graph API
中文
中文
  • 概述
    • Relation Graph
  • 开发指引
    • 快速开始
    • 鉴权与限流
    • 如何使用 Lit Protocol 解密
  • API
    • Relation One 用户 Profile
    • 查询用户持有的NFT
    • 查询用户持有的SBT
    • 用户标签
    • 关系图谱
    • 多维推荐
    • 跨平台身份链接
    • 共同好友
    • 共同交互合约
    • 同一身份验证
Powered by GitBook
On this page
  1. API

共同交互合约

GET /api/v1/mutualContractInteraction

  • 说明:通过这个 API,你可以验证或查询两个或两个以上的账号或地址之间的共同交互过的智能合约地址列表。

  • Header

Field
Type
Required
Remarks

ApiKey

String

true

  • Request Parameters

Field
Type
Required
Remarks

address

List

true

EOA Address

  • Request Example

curl  GET 'https://api.relationlabs.ai/api/v1/mutualContractInteraction?address=0x9bd286ef4e3d9ec1af6c6ae9da2f0b3617deab13,0x1ac286ef4e3d9ec1af6c6ae9da2f0b3617deab22' \
--header 'ApiKey: <ApiKey>'
  • Response Parameters

Field
Type
Remarks

code

String

返回码

desc

String

返回信息

data

List

数据

  • Response Body

{
  "code": "0",
  "desc": "success",
  "data": [
    "0x1111",
    "0x2222",
    "0x3333"
  ]
}
  • Return Code

code
desc
Remarks

0

success

the flag for a successful request

Previous共同好友Next同一身份验证

Last updated 1 year ago

从管理员获取的

ApiKey