BRAND INDEX
WCN
DOCS
⌘K
{{ r.label }}
{{ r.hint }}
No matches for “{{ query }}”.
{{ version }}
WCN DEVELOPER DOCS

Build on the evidence layer.

Submit proofs, run nodes, and settle deals on the Web3 Capital Network. Private by default, verifiable by design.

Search the docs… ⌘K
Guides
Step-by-step walkthroughs — from your first proof to running a reviewed node.
API reference
Every endpoint, parameter, and response. cURL, JavaScript and Python.
Authentication
API keys, bearer tokens, idempotency, and how privacy review gates publication.
Changelog
What shipped, what changed, what we fixed — versioned and dated.
POPULAR PAGES
Submit a proofPOST /v1/proof
AuthenticationGuide
WebhooksPOST /v1/webhooks
Run a nodeGuide
QUICKSTART
Submit your first proof in 60 seconds.
Grab a key, install the SDK, and post evidence to a task. We handle the privacy review.
$ npm i @wcn/sdk
$ export WCN_KEY=sk_live_…
# submit evidence
await wcn.proof.submit(task)
GUIDES / QUICKSTART

Submit your first proof

WCN is an evidence-first network: work is settled against proofs, not promises. This guide takes you from zero to a verified submission. You'll need a funded account and about a minute.

³
Everything you submit stays private until review clears. Only an anonymized summary is ever published.

Authentication

Create a secret key in the dashboard and export it. Every request is authenticated with a bearer token; never ship a sk_live key to the browser.

$ export WCN_KEY=sk_live_2aF…

Quickstart

Install the SDK, then submit evidence against an open task.

1
Install the SDK
Available for Node 18+ and Python 3.10+.
2
Find an open task
List deals with status=open and pick one to satisfy.
3
Submit the proof
Post your evidence URI. You'll get a review status back immediately.

The request

TERMINAL
{{ tk.t }}

A successful call returns the proof id and its review status:

{{ tk.t }}

Next steps

Proof API →
Parameters, errors and idempotency in full.
Webhooks →
Subscribe to proof.published instead of polling.
API REFERENCE / {{ epGroup }}

{{ epTitle }}

{{ epMethod }}{{ epPath }}

{{ epDesc }}

PARAMETERS

{{ p.name }} {{ p.type }} {{ p.reqLabel }}
{{ p.desc }}

REQUEST

{{ tk.t }}

RESPONSE

{{ tk.t }}

ERRORS

{{ e.code }} {{ e.name }} {{ e.desc }}
RESOURCES / CHANGELOG

Changelog

New endpoints, improvements and fixes across the WCN API. Subscribe to the api.changelog webhook to get these in your inbox.

{{ c.version }}
{{ c.date }}
{{ it.type }} {{ it.text }}