Quick Start Guide
Welcome to Trustpath! Follow these steps to start using the Fraud Detection API right away.
Step 1: Create an Account
- Visit the TrustPath Sign-Up Page.
- Fill in your details and complete the registration process.
Once you've created your account, you'll be automatically directed to the TrustPath Console.
Step 2: Access Your API Keys
- In the Console, navigate to the left-hand menu and select Getting Started → API Keys.
- Copy your API key from the displayed list or generate a new one if required.
⚠️ Important: Keep your API key secure! It grants access to your TrustPath account and should not be shared publicly.
Step 3: Start Using the API
You can now use the API directly from the console or integrate it into your application.
Make Your First Request
Here’s an example using cURL
:
curl --request POST \
--url https://api.trustpath.io/v1/risk/evaluate \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'content-type: application/json' \
--data '{
"ip": "95.91.243.197",
"email": "[email protected]"
}'
- Replace
YOUR_API_KEY
with the API key you copied earlier. - Replace the
ip
andemail
fields with the values you want to evaluate.
Next Steps
Once you've tested your first request, explore more features in the Authentication & Scoring. Discover how to:
- Parse response data.
- Use advanced configurations.
- Integrate seamlessly with your systems.
Ready to protect your platform from fraud? Let’s get started!
This guide is clear and actionable, guiding users step-by-step from account creation to making their first API call. Replace placeholder links with actual links to make the guide fully functional.