curl -X POST 'https://api.parcha.ai/runCheck' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"agent_key": "public-bdd",
"check_id": "kyb.proof_of_address_verification",
"payload": {
"id": "poa-check-001",
"self_attested_data": {
"business_name": "Acme Corp, Inc.",
"address_of_operation": {
"street_1": "251 Little Falls Drive",
"city": "Wilmington",
"state": "Delaware",
"postal_code": "19808",
"country_code": "US"
},
"proof_of_address_documents": [
{
"url": "https://storage.googleapis.com/parcha-ai-public-assets/acme_bank_statement.pdf",
"type": "Document",
"file_name": "acme_bank_statement.pdf",
"source_type": "gcs"
}
]
}
},
"check_args": {
"validity_period": 90,
"include_associated_individuals": false,
"verify_self_attested_address": true,
"accepted_documents": [
"Bank statement",
"VAT invoice",
"Utility bill",
"Tenancy agreement",
"Tax document",
"Mortgage statement",
"Credit card statement",
"Insurance policy",
"Lease agreement"
],
"enable_visual_verification": true,
"enable_fraud_check": true
},
"webhook_url": "https://your-webhook.com/check-updates"
}'