Developer Documentation
Integrate our compliance engines and fee calculators directly into your financial applications using our unified REST APIs.
Authentication
The API uses API keys to authenticate requests. You can view and manage your API keys in the Dashboard. Your API keys carry many privileges, so be sure to keep them secure!
curl -X GET https://api.fintech-platform.com/v1/me \
-H "Authorization: Bearer sk_test_51Mz..."Compliance Engine
Programmatically check your product's compliance status against SAMA regulations. The engine returns a readiness score and a list of gaps.
Endpoint
POST /v1/compliance/check
Rate Limit
100 req / minute
Example Request
curl -X POST https://api.fintech-platform.com/v1/compliance/check \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json" \
-d '{
"activity": "crowdfunding",
"region": "SA",
"annual_volume": 5000000
}'