a70e68c7bd
* Smolmix documentation * Add smolmix docs: landing page, tutorials, and developer page links * Add Exit Gateway services page (NR vs IPR) and link from existing docs * Update auto-generated command and API outputs * Reorg of tutorials and architecture pages * License information + remove TODO from docs.rs visibile comment + reorg readme * Add versions file for doc-wide versioning * Relative -> absolute links * Relative -> absolute links * Update license + add old tutorial code as examples * Streamline smolmix docs * Clippy * Clean up doc comments * Last pass * Add larger file download to list * set new versions * Clippy * Remove blake pin from docs + add version range to root Cargo.toml * Format example logging * Remove crate blocked component * Loose whitespace * Add doc verification script for inline mdx * Formatting * Components regen * Reorg + tighten text * Voicing cohesion pass + remove bloated examples * Voicing cont. * Reduce max download size * Small suggested clarifications * Max/docs voicing consistency (#6769) * Reduce max download size * voicing consistency across docs * New landing order w smolmix * Tweaks * Final tweaks
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
---
|
|
title: "Explorer API (Deprecated)"
|
|
description: "Legacy Explorer API reference for the Nym Mixnet Explorer. Deprecated in favour of the Node Status API."
|
|
schemaType: "TechArticle"
|
|
section: "APIs"
|
|
lastUpdated: "2026-03-15"
|
|
---
|
|
|
|
import { RedocStandalone } from 'redoc'
|
|
import { Callout } from 'nextra/components'
|
|
|
|
# Explorer API
|
|
|
|
<Callout type="warning">
|
|
The Explorer API is deprecated. Use the [Node Status API](/apis/ns-api) instead, which provides the same data and more.
|
|
</Callout>
|
|
|
|
The Explorer API is the legacy backend for the [Mixnet Explorer](https://nym.com/explorer).
|
|
|
|
## Mainnet endpoints
|
|
|
|
- **OpenAPI spec:** [explorer.nymtech.net/api/v1/openapi.json](https://explorer.nymtech.net/api/v1/openapi.json)
|
|
- **Swagger UI:** [explorer.nymtech.net/api/swagger/index.html](https://explorer.nymtech.net/api/swagger/index.html)
|
|
|
|
<br />
|
|
|
|
<RedocStandalone
|
|
specUrl="https://explorer.nymtech.net/api/v1/openapi.json"
|
|
options={{
|
|
nativeScrollbars: true,
|
|
theme: {
|
|
sidebar: {
|
|
backgroundColor: '#273239',
|
|
textColor: '#FCFDFE'
|
|
}
|
|
}
|
|
}}
|
|
/>
|
|
|