Tetron.fun - Getting Started
Step‑by‑step guide to register, configure, and execute your first Tetron transaction.
Getting Started
This guide will walk you through creating an account, obtaining API credentials, installing the TetronFun SDK, and executing your first payment intelligence request.
1. Prerequisites
A modern development environment with one of the following languages supported by TetronFun SDKs:
JavaScript (Node.js ≥ 14)
Python (≥ 3.8)
API client capable of sending HTTPS requests (e.g.
curl
, Postman) if you prefer raw REST calls.An active TetronFun account (sign‑up instructions below).
2. Account Registration
Navigate to the TetronFun portal:
https://app.tetronfun.com/signup
Provide your email address and create a secure password.
Verify your email by clicking the link sent to your inbox.
Log in to the dashboard at
https://app.tetronfun.com/login
.
3. Obtaining API Credentials
In the dashboard, open Settings → API Keys.
Click Create New Key.
Give the key an identifiable name (e.g. “Development Key”).
Copy the API Key and API Secret; you will use these in your client configuration.
Store credentials securely (do not commit to source control).
4. Installing the SDK
JavaScript (Node.js)
Python
5. Configuring Your Client
JavaScript
Python
6. Executing Your First Request
Below is an example of submitting a sample transaction for intelligence scoring.
JavaScript
Python
7. Interpreting the Response
fraudScore: A value between 0–100 indicating likelihood of suspicious activity (higher = more suspicious).
reputationScore: A value between 0–100 reflecting the trustworthiness of wallet addresses (higher = more trusted).
recommendation: Suggested action based on combined metrics (e.g.
approve
,review
,block
).
8. Error Handling
401 Unauthorized: Invalid API key or secret.
429 Too Many Requests: Rate limit exceeded.
5xx Server Errors: Temporary issues—retry with exponential backoff.
9. Next Steps
Review the API Reference for additional endpoints and parameters.
Explore the Best Practices & Case Studies to optimize scoring thresholds and workflows.
Integrate webhooks or event listeners to automate responses to intelligence outputs.
Contact support at
support@tetronfun.com
for questions or assistance.
Last updated