New: French documentation now available! Switch to French
curl --request POST \
--url https://api.txcloud.io/v1/transactions/score \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"amount": 123,
"currency": "<string>",
"type": "p2p_transfer",
"sender": {
"user_id": "<string>",
"account_id": "<string>",
"device_id": "<string>",
"ip_address": "<string>"
},
"recipient": {
"type": "<string>",
"value": "<string>",
"name": "<string>"
},
"transaction_id": "<string>",
"context": {},
"metadata": {}
}
'{
"id": "<string>",
"object": "<string>",
"processing_time_ms": 123,
"decision": "approve",
"risk_score": 123,
"risk_level": "<string>",
"signals": {
"positive": [
"<string>"
],
"negative": [
"<string>"
]
},
"checks": {},
"rules_triggered": [
{}
]
}Scores a transaction in real-time before authorization
curl --request POST \
--url https://api.txcloud.io/v1/transactions/score \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"amount": 123,
"currency": "<string>",
"type": "p2p_transfer",
"sender": {
"user_id": "<string>",
"account_id": "<string>",
"device_id": "<string>",
"ip_address": "<string>"
},
"recipient": {
"type": "<string>",
"value": "<string>",
"name": "<string>"
},
"transaction_id": "<string>",
"context": {},
"metadata": {}
}
'{
"id": "<string>",
"object": "<string>",
"processing_time_ms": 123,
"decision": "approve",
"risk_score": 123,
"risk_level": "<string>",
"signals": {
"positive": [
"<string>"
],
"negative": [
"<string>"
]
},
"checks": {},
"rules_triggered": [
{}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.txcloud.thetekcircle.io/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
p2p_transfer, bill_payment, merchant_payment, cash_withdrawal, bank_transfer, international_transfer Show child attributes
Show child attributes