💎
2.5 Intelligence Docs
  • Quick Start
  • 2.5 - Community Bots
    • Whitelist Manager Bot
    • NFT News Bot
    • 2.5 NFT Verification Bot
  • 2.5 - Marketplace Tracking Bots
    • NFT Sales & Listings Bot
    • Twitter Sales Bot
      • Custom API Key
    • Magic Eden Bot
    • ENS Sales Bot
    • Paras Sales Bot
    • Supported Marketplaces and Chains
  • 2.5 - NFT Activity Bots
    • NFT Wallet Tracker Bot
    • NFT Mint Bot
    • NFT Stats & Info Bot
  • 2.5 - Premium
    • ⭐Introduction
    • 🌟Custom Bots
    • ⭐Unlimited Tracking
    • ⭐Intelligence Reports
    • ⭐Dashboard
  • 2.5 - Intelligence Data
    • Introduction
    • Intelligence Labels
    • Scoring API
  • Previous Products
    • OpenSea Sales & Listings Bot
    • OpenSea Listing Bot
    • NFT Whitelist Wallet Bot
    • Web Publisher SDK
    • 2.5 Role Bot
Powered by GitBook
On this page
  • API Keys
  • Get Scores
  • Fetch scores and details for an ETH L1 address
  1. 2.5 - Intelligence Data

Introduction

2.5 Intelligence's API is in private beta.

API Keys

Your API key is a signed JWT that should be provided in the Authorization header with all API requests.

Authorization: Bearer eyJhb.....pXVCJ

Get Scores

Fetch scores and details for an ETH L1 address

GET https://rutherford.5.dev/api/scores/${address}

Path Parameters

Name
Type
Description

address*

String

Address to retrieve scores for. starting with 0x

const address = '0x7274574f459c78D231F834e493de92e1F8127cd6';
const key = 'eyJhb.....pXVCJ';

const result = await fetch(`https://rutherford.5.dev/api/scores/${address}`, {
  headers: {
    'Accept': 'application/json',
    'Content-Type': 'application/json',
    'Authorization': 'Bearer ' + key,
  },
});
curl -XGET \
     -H 'Authorization: Bearer eyJhb.....pXVCJ' \
     -H "Content-type: application/json" \
     'https://rutherford.5.dev/api/scores/0x7274574f459c78D231F834e493de92e1F8127cd6'

PreviousIntelligence ReportsNextIntelligence Labels

Last updated 1 year ago

See the for details on response data.

Scores API Reference