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

# Examples

> Live demos for gates, React, and Node.

Working reference apps in the [neus/network](https://github.com/neus/network) repo.

**Reference:** [trust-receipts-demo](https://github.com/neus/network/tree/main/examples/trust-receipts-demo) · **Live demo:** [neus.network/demo](https://neus.network/demo).

| Example                                                                                                     | Use it for                                                                     |
| ----------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |
| [**trust-receipts-demo** (default)](https://github.com/neus/network/tree/main/examples/trust-receipts-demo) | Full **VerifyGate** + **ProofBadge**: each card is a trust outcome and a check |
| [verified-handle-react](https://github.com/neus/network/tree/main/examples/verified-handle-react)           | Claim a handle, show a **ProofBadge**, and gate creator actions                |
| [nodejs-basic](https://github.com/neus/network/tree/main/examples/nodejs-basic)                             | Server access key + lower-level verify / `gateCheck`                           |

**App path** → [Quickstart](./quickstart) · **Assistant path** → [Install](./install) · **Server path** → [Integrations](./cookbook/integrations)

After Install, run `neus examples` to list local samples.

## HTTP reference (advanced)

Server automation that signs locally. Most products never need this — use Hosted Verify or MCP instead.

```bash theme={"dark"}
curl -X POST https://api.neus.network/api/v1/verification/standardize \
  -H "Content-Type: application/json" \
  -d '{"walletAddress":"0x...","verifierIds":["ownership-basic"],"data":{"content":"Hello NEUS","owner":"0x..."},"signedTimestamp":1713312000000}'
# Then sign signerString and POST /api/v1/verification with the same body + signature
```
