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.incorporation_document_verification",
"payload": {
"id": "inc-doc-check-001",
"self_attested_data": {
"registered_business_name": "Acme Corp, Inc.",
"incorporation_date": "2023-03-29",
"address_of_incorporation": {
"street_1": "251 Little Falls Drive",
"city": "Wilmington",
"state": "Delaware",
"postal_code": "19808",
"country_code": "US"
},
"incorporation_documents": [
{
"url": "https://storage.googleapis.com/parcha-ai-public-assets/acme_incorporation_doc.pdf",
"type": "Document",
"file_name": "acme_incorporation_doc.pdf",
"source_type": "gcs"
}
]
}
},
"check_args": {
"verify_incorporation_date": true,
"verify_registration_number": true,
"verify_address": true,
"verify_no_high_risk_fraud": true,
"verify_visual_verification_passed": true,
"enable_visual_verification": true,
"enable_fraud_check": true,
},
"webhook_url": "https://your-webhook.com/check-updates"
}'