For the complete documentation index, see llms.txt. This page is also available as Markdown.

Quick Start

Comprehensive reference for integrating with Relation Graph API endpoints

Endpoint URLs

  • https://api.relationlabs.ai

Demo ApiKey

  • ApiKey: 581c6c4fa0b54912b00088aa563342a4

  • private key: 89a1a8c7d5f6ab952e02c5c6a71f48d60fbe06c21ec021374907d93d644b1236

Query

This service follows the REST API standards and can be conveniently accessed using any http client.

  • Example:

curl --location 'https://api.relationlabs.ai/api/v1/mutualFriend?address=0x0001%2C0x000002&limit=10&offset=0' \
--header 'ApiKey: <ApiKey>' 
const axios = require('axios');

let config = {
  method: 'get',
  maxBodyLength: Infinity,
  url: 'https://api.relationlabs.ai/api/v1/mutualFriend?address=0x0001%2C0x000002&limit=10&offset=0',
  headers: {
      'ApiKey': '<ApiKey>'
  }
};

axios.request(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});

Last updated