---
name: nut402.vercel.app
description: nut402.vercel.app exposes a single endpoint that reports the current mint status of a Base-network USDC mint operation. It returns whether the mint period is active or has ended, and accepts no inputs.
host: nut402.vercel.app
---

# nut402.vercel.app

This host is a narrow, read-only status oracle for a specific Base-network USDC mint. It serves agents that need to gate downstream logic on whether a mint window is open or closed before taking further action. It does not execute transactions or support any other EVM chain.

## When to use this host

Use this host when an agent needs to check whether a specific Base-network USDC mint is currently active before proceeding with mint-dependent logic. Do not use it to initiate, sign, or submit a mint transaction — it is read-only. Do not use it for mint status checks on any EVM chain other than Base; for other chains, a different status oracle would be required. If you need broader on-chain state (token balances, contract reads, transaction history), this host is not appropriate — consider a general-purpose Base RPC or indexer instead.

## Capabilities

### Mint Status Reporting

Reports the live open/closed state of a Base-network USDC mint endpoint, enabling agents to conditionally branch based on mint availability.

- **`fetch-base-mint-status`** — Returns the current mint status for a Base-network USDC mint endpoint, indicating whether the mint is active or has ended.

## Skill reference

### `fetch-base-mint-status`

**BaseMint Gateway** — Returns the current mint status for a Base-network USDC mint endpoint, indicating whether the mint is active or has ended.

*Use when:* Use when an agent needs to check the current status of a Base-network USDC mint operation, such as determining whether a mint period is still open or has concluded.

*Not for:* Do not use for initiating or executing a mint transaction; this endpoint only reports status. Not suitable for EVM chains other than Base.

**Returns:** Returns mint status information indicating whether the Base-network USDC mint is currently active or has ended.

**Example:** `GET https://nut402.vercel.app/mint`

---
