Quick start
A quick guide to getting started with Statsnet API.
View as MarkdownVerify companies, prevent fraud, and assess risks with a single API. Build secure onboarding processes, conduct compliance checks, and implement risk monitoring directly into your application.
Statsnet creates a unified, reliable source of business data worldwide. Our goal is to provide the most up-to-date information on registration data, financial health, and risk profiles of every enterprise. Data you can trust, access, analyze, and extract whenever and however you need it.
The API base URL is https://statsnet.co/api/v1.
Step 1. Get your API key
Create an API key (sk_live_...) in your account settings — up to 10 keys per account. Pass it in the Authorization header of each request:
Authorization: Bearer sk_live_YOUR_KEYThe x-api-key: sk_live_YOUR_KEY header works identically. A key inherits your account’s subscription: public endpoints work with any key, paid endpoints require an active plan. See Authentication for details.
Step 2. Make an API request
Search for a company to verify your integration:
curl -X POST "https://statsnet.co/api/v1/companies/search" \
-H "Authorization: Bearer sk_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "kaspi", "filters": {"jurisdiction": ["kz"]}}'Then fetch a company card by its ID (see Get Company):
curl "https://statsnet.co/api/v1/companies/12345" \
-H "Authorization: Bearer sk_live_YOUR_KEY"Step 3. Connect your AI agent (optional)
Statsnet is also available as a remote MCP server for AI agents — same key, same billing. See MCP Server.
Questions?
We are always happy to help with code or any other questions you might have! Feel free to reach out at dev@statsnet.co.