Skip to main content
POST
/
fraud
/
synthetic
/
analyze
Analyze synthetic identity
curl --request POST \
  --url https://api.txcloud.io/v1/fraud/synthetic/analyze \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "first_name": "<string>",
  "last_name": "<string>",
  "date_of_birth": "<string>",
  "document_number": "<string>"
}
'
{
  "id": "<string>",
  "is_synthetic": true,
  "confidence": 123,
  "risk_score": 123,
  "signals": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
first_name
string
last_name
string
date_of_birth
string
document_number
string

Response

200 - application/json

Analysis results

id
string
is_synthetic
boolean
confidence
number
risk_score
integer
signals
object