“The bridge between BLINK and existing financial infrastructure.”
Everything available as an API.
Six core capabilities that let institutions build on BLINK without running nodes.
Token management
Issue, transfer, burn, and manage tokens via REST and GraphQL endpoints.
Compliance queries
Check KYC status, jurisdiction, reserves, and audit results programmatically.
Transaction monitoring
Subscribe to real-time transaction streams via webhooks and SSE.
Reporting
Generate MiCA, US STABLE Act, and MAS compliance reports via API.
Regulator access
Dedicated API tier for supervisors with expanded visibility and audit endpoints.
Webhooks
Real-time event notifications for compliance events, transfers, and attestations.
A simple REST call. A powerful result.
Transfer tokens with compliance checks in a single request.
curl -X POST https://api.blink.network/v1/tokens/transfer \
-H "Authorization: Bearer $BLINK_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"from": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"to": "0x8ba1f109551bD432803012645Hac136c82C3e7C",
"token": "0xTokenContractAddress",
"amount": "1000000000000000000",
"jurisdiction": "mica-eu"
}'{
"status": "success",
"data": {
"transactionHash": "0x3f5ce5fbfe3e...",
"from": "0x742d35...f0bEb",
"to": "0x8ba1f1...3e7C",
"amount": "1000000000000000000",
"token": "0xTokenContractAddress",
"compliance": {
"kyc": "verified",
"jurisdiction": "mica-eu",
"screening": "passed"
},
"timestamp": "2026-06-21T14:32:11Z"
}
}API tiers for every scale.
From individual developers to global regulators.
Built for institutions.
Banks, fintechs, and regulators can plug BLINK into their existing systems without rebuilding their technology stack. The API Platform provides the compliance and tokenization primitives they need through familiar REST and GraphQL interfaces.
query GetComplianceStatus($address: String!) {
compliance(address: $address) {
kyc
jurisdiction
screening
reserves
lastUpdated
}
}