> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nshield.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Security, Bridge, Token & Wallet API

> Security checks, Solana to Hyperliquid Perps routes, and on-chain intelligence APIs for Solana products.

<CardGroup cols={2}>
  <Card title="Security Model" icon="shield-check" href="/concepts/security-model" cta="Review risk APIs" arrow="true">
    Score tokens, wallets, dapps, transactions, and addresses before they reach users.
  </Card>

  <Card title="Nova Bridge" icon="arrow-left-right" href="/concepts/nova-bridge" cta="Send SOL to Hyperliquid" arrow="true">
    Move SOL or USDC between Solana and Hyperliquid Perps with wallet-ready route plans.
  </Card>

  <Card title="Token & Wallet Intelligence" icon="database" href="/reference/overview" cta="Explore intelligence APIs" arrow="true">
    Search tokens, inspect wallets, follow trades, and read market signals from one Solana API.
  </Card>
</CardGroup>

<CodeGroup>
  ```bash Token risk theme={"dark"}
  curl "https://api-nova.tech/v1/security/token-risk" \
    -H "Content-Type: application/json" \
    -d '{
      "mint": "So11111111111111111111111111111111111111112"
    }'
  ```

  ```json Response theme={"dark"}
  {
    "riskLevel": "low",
    "score": 12,
    "summary": "This token has normal metadata and verified-token signals.",
    "reasons": [
      { "code": "verified_asset", "message": "Known or verified token metadata was found." }
    ]
  }
  ```
</CodeGroup>

## Built for Solana product teams

Nova is built for wallets, dashboards, agents, and trading products that need clear answers before showing users a token, wallet, dapp, or transaction.

* Is this token safe enough to show?
* What does this wallet own?
* What did this wallet trade?
* What tokens are moving right now?
* Which addresses or apps need a warning?

Nova packages security context, Hyperliquid Perps routes, and on-chain intelligence into simple public endpoints with request caps, rate limits, and production-safe logging.

## API Sections

<CardGroup cols={2}>
  <Card title="Security Model" icon="shield-check" href="/concepts/security-model">
    Risk checks for tokens, wallets, dapps, transactions, and addresses.
  </Card>

  <Card title="Nova Bridge" icon="arrow-left-right" href="/concepts/nova-bridge">
    Solana to Hyperliquid Perps and Hyperliquid Perps to Solana routes.
  </Card>

  <Card title="On-chain Intelligence" icon="database" href="/reference/overview">
    Token discovery, wallet intelligence, trades, leaderboards, prices, charts, and market signals.
  </Card>
</CardGroup>

## Get Started

<CardGroup cols={2}>
  <Card title="Make your first request" icon="terminal" href="/quickstart">
    Try a branded playground request with a token mint or public wallet address.
  </Card>

  <Card title="Understand authentication" icon="key-round" href="/concepts/authentication">
    Public API requests are open and protected by strict rate limits.
  </Card>

  <Card title="Choose an API surface" icon="panel-top" href="/concepts/api-surface">
    Start with security APIs, Nova Bridge, or data intelligence APIs.
  </Card>

  <Card title="Review safe inputs" icon="shield-check" href="/concepts/disabled-and-private">
    Use public-chain identifiers only: addresses, mints, signatures, and app URLs.
  </Card>
</CardGroup>

<Note>
  Nova works with public-chain identifiers. Keep recovery phrases, private keys, passcodes, and backup codes out of requests; wallet approvals and signing stay in the wallet.
</Note>
