Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/cubes/balances-cube.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ If you need to know *why* a balance moved rather than *what it became*, reconstr

## Related

- [Address Labels API](/docs/cubes/address-labels-api) — identify which of those addresses are exchanges, contracts, or known entities
- [Address Labels API](/docs/labels/address-labels-api) — identify which of those addresses are exchanges, contracts, or known entities
- [Balance Updates cube](/docs/cubes/balance-updates-cube) — per-change history and change attribution
- [Transfers cube](/docs/cubes/transfers-cube) — the transfers that drive most balance changes
- [Token Holders API (Ethereum)](/docs/blockchain/Ethereum/token-holders/token-holder-api) — worked `EVM.Holders` examples
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
title: "Address Labels API — Identify Crypto Wallets"
sidebar_label: "Overview"
sidebar_position: 1
description: "Identify wallets and contracts with the Bitquery Address Labels API: exchange hot and cold wallets, deposit addresses, token contracts and clones, any chain."
keywords:
- address labels API
Expand Down
7 changes: 7 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,13 @@ const config = {
to: "/docs/blockchain/Ethereum/token-holders/token-holder-api/",
from: "/docs/examples/balances/tokenHolders-api/",
},
// Labels moved out of the cubes section into their own top-level
// section. The cubes URL shipped in #236 and was live, so it keeps
// redirecting.
{
to: "/docs/labels/address-labels-api/",
from: "/docs/cubes/address-labels-api/",
},
{
to: "/docs/contribution-guidelines/",
from: "/docs/contribution_guidelines/",
Expand Down
12 changes: 11 additions & 1 deletion sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,6 @@ const sidebars = {
],
},
"cubes/solana",
"cubes/address-labels-api",
],
},

Expand Down Expand Up @@ -1072,6 +1071,17 @@ const sidebars = {
"stablecoin-APIs/usdt-api",
],
},
{
type: "category",
label: "Address Labels API",
link: {
type: "generated-index",
title: "Address Labels API",
description:
"Identify the real-world entity behind any wallet or contract address — exchange wallets, deposit addresses, token contracts, and issuer-blocked lists.",
},
items: ["labels/address-labels-api"],
},
{
type: "category",
label: "MCP",
Expand Down
Loading