Powered by Starknet

TokenKit

The complete platform for managing Fungible and Non-Fungible Tokens on Starknet. Track, analyze, and explore the entire token ecosystem.

Indexer Progress

Latest Block

-

Transfers Indexed

-

Live Chunk Block

-

Active Chunks

-

Explore Address

Look up any Starknet address to view token portfolio and transfer history

Developer-Friendly API

Integrate TokenKit into your applications with our simple and powerful API

Account Search Example

REST API
import axios from 'axios';

const response = await axios
    .get('https://api.tokenkithq.io/api/accounts?search=0xACCOUNT_ADDRESS', {
        headers: {
            'api-key': 'YOUR-API-KEY',
            'Content-Type': 'application/json'
        }
    });
console.log('Accounts data:', response.data);