Introduction
Build financial workflows on the Cowdi public API.
Cowdi exposes a single production API at api.cowdi.co that combines several
internal services — accounts, transactions, KYC, and more — behind one
consistent, token-authenticated surface.
Get started
Authentication
Exchange or refresh a token and call the API with bearer auth.
API Reference
Every endpoint, generated from the committed OpenAPI contract.
Base URL
All requests go to:
https://api.cowdi.coMaking your first call
Send an Authorization: Bearer <token> header with every request:
curl https://api.cowdi.co/v1/user \
-H "Authorization: Bearer $COWDI_ACCESS_TOKEN"See Authentication for how to obtain a token.