The sequence
Work through the guides in order the first time:- Join a network — membership is arranged
with your SOLO account manager; this guide shows you how to verify that your
token, role, and
network_idactually work before you build anything. - Furnish an entity — record consent, then contribute KYC certificate data about a consumer into your network.
- Query a product — reuse the consent
and read a consolidated KYC certificate back, including how to interpret a
200versus a204and theX-Ref-Idheader.
What you’ll need
| Requirement | Where it comes from | Used for |
|---|---|---|
| Network membership + role | Arranged with your SOLO account manager | Furnisher role to furnish, querier role to query |
| Bearer token (SDK token) | Issued by your SOLO account manager | The Authorization header on every request |
network_id | Provided when your organization joins a network | Scoping every consent, search, furnish, and query |
| Program name (furnishers only) | Your network configuration | Routing furnished data to the right furnishing policy |
https://api.solo.one/v1 and authenticate with the
token as a Bearer credential:
/v1/consent/consumer,
/v1/entities/consumer/search, /v1/products/kyc_certificate/...). The
business-side equivalents — POST /v1/consent/business,
GET /v1/entities/business/search, and the KYB certificate under
/v1/products/kyb_certificate — follow the same patterns, so everything you
learn here transfers directly.
Every error response uses the same shape: a human-readable
detail plus a
machine-readable error_code (for example AUTHENTICATION_REQUIRED or
RESOURCE_NOT_FOUND). Each walkthrough includes a troubleshooting section
with the exact failures you’re likely to hit.Choose your path
Join a network
Verify your token, membership, and role with your first two API calls.
Furnish your first entity
Record consent, then contribute KYC data about a consumer.
Query your first product
Read a consolidated KYC certificate back from the network.