Skip to content

Identity Verification

POST
/api/v1/auth/identity/verify
curl --request POST \
--url https://api.parasta.io/api/v1/auth/identity/verify \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "name": "John Doe", "phone": "01012345678", "ssn_front": "910101", "ssn_gender": "1", "carrier": "SKT" }'

Verify user identity via mobile carrier (name, phone, SSN). Initiates SMS OTP flow.

Media type application/json
object
name
required

Full legal name

string
phone
required

Mobile phone number

string
ssn_front
required

Date of birth (6 digits)

string
ssn_gender
required

Gender digit (1-4)

string
carrier
required

SKT | KT | LGU

string
Example
{
"name": "John Doe",
"phone": "01012345678",
"ssn_front": "910101",
"ssn_gender": "1",
"carrier": "SKT"
}

OK

Media type application/json
Example
{
"status": "ok",
"data": {
"verification_id": "vid_abc123",
"expires_at": "2026-03-26T10:05:00Z"
}
}