Complete KYC (On-chain)
POST
/api/v1/kyc/onchain/complete
const url = 'https://api.parasta.io/api/v1/kyc/onchain/complete';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.parasta.io/api/v1/kyc/onchain/complete \ --header 'Authorization: Bearer <token>'Issue on-chain DID credential after KYC verification.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
Example
{ "status": "ok", "data": { "credential_id": "vc_kyc_xxxx", "did": "did:para:xxxx", "issued_at": "2026-03-26T10:00:00Z" }}