curl -X POST "$BASE_URL/v1/jobs" \
-H "Content-Type: application/json" \
-H "x-api-key: $API_KEY" \
-H "Idempotency-Key: job_ada_001" \
-d '{
"person": {
"full_name": "Ada Lovelace",
"email": "[email protected]"
},
"claims": [
{
"claim_key": "id_1",
"claim_type": "identity",
"expected": {
"github_url": "https://github.com/ada"
},
"match_rules": {
"match_strength": "semantic",
"min_confidence": 0.7
}
}
],
"options": {
"depth": "deep",
"max_sources": 50,
"exa_category": "people",
"allow_domains": ["mit.edu"],
"webhook": {
"endpoint_id": "wh_123",
"events": ["job.completed", "job.failed"]
}
}
}'