https://api.neus.network
Billing. Get started, Billing.
Create proofs. Hosted Verify at https://neus.network/verify, Quickstart, or widgets. Use HTTP for checks and reads. Use POST /api/v1/verification only when you need raw HTTP (Authentication).
Endpoints
| Path | Method | Purpose |
|---|---|---|
/api/v1/proofs/check | GET | Eligibility (server gates) |
/api/v1/proofs/by-wallet/{address} | GET | List by wallet |
/api/v1/proofs/{qHash} | GET | Fetch by id (qHash same as SDK proofId) |
/api/v1/verification | POST | Create proof (advanced - see Authentication) |
/api/v1/verification/standardize | POST | Mandatory phase 1 for raw HTTP: exact signerString for the body you will submit |
/api/v1/verification/verifiers | GET | Catalog |
Examples
By wallethttps://neus.network/verify (Hosted Verify). Raw HTTP is a strict two-phase handshake, not a single-step request:
- Build the exact JSON body you will submit.
POST /api/v1/verification/standardizewith that body.- Sign the returned
signerString. POST /api/v1/verificationwith the same JSON body plussignature.
Auth
- Reads: public and unlisted proofs without a caller; private proofs only with allowed access.
- Writes: wallet signature, or authenticated caller when the API accepts it—Authentication
Next
Get started
Onboarding.
Authentication
Signing.
Errors
Codes.