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.business_ownership_verification_tool",
"kyb_schema": {
"id": "ownership-check-001",
"self_attested_data": {
"business_name": "Acme Corp, Inc.",
"business_ownership_documents": [
{
"url": "https://storage.googleapis.com/parcha-ai-public-assets/acme_cap_table.pdf",
"file_name": "acme_cap_table.pdf",
"source_type": "file_url"
}
]
},
"associated_individuals": [
{
"id": "owner-001",
"self_attested_data": {
"first_name": "John",
"last_name": "Smith",
"title": "CEO",
"is_business_owner": true,
"business_ownership_percentage": 60
}
},
{
"id": "owner-002",
"self_attested_data": {
"first_name": "Jane",
"last_name": "Doe",
"title": "CTO",
"is_business_owner": true,
"business_ownership_percentage": 30
}
}
],
"associated_entities": [
{
"id": "entity-001",
"self_attested_data": {
"business_name": "Venture Capital LLC",
"business_ownership_percentage": 10,
"is_trust": false
}
}
]
},
"check_args": {
"min_ownership_threshold": 25,
"total_ownership_threshold": 100,
"check_self_attested_ownership": true,
"enable_visual_verification": true,
"enable_fraud_check": true,
"include_incorporation_documents": false
},
"webhook_url": "https://your-webhook.com/check-updates"
}'