Skip to content
StatusSupportDashboard
Getting Started

Introduction

With SafetyKit, you can deploy AI agents to automate risk reviews, onboarding, and investigations. Trusted by leading marketplaces and fintech platforms.

The Data API lets you ingest data into SafetyKit for processing and analysis. This is perfect for syncing your users, products, transactions, or any entity you want SafetyKit to understand.

Terminal window
curl -X POST https://api.safetykit.com/v1/data/users \
-H "Authorization: Bearer sk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"data": [
{
"id": "user_12345",
"email": "alice@example.com",
"username": "alice_wonderland",
"profile_image": "https://example.com/alice.jpg",
"bio": "Just a curious person exploring the world!",
"created_at": "2024-01-15T10:30:00Z"
}
]
}'

What happens next? SafetyKit processes your data asynchronously. You can set up webhooks to get notified when processing completes.


As an alternative to using the API directly, we offer Typescript and Python SDKs to handle authentication, retries, and type safety out of the box.

Terminal window
npm install safetykit


We’re here for you! Contact us at support@safetykit.com.