ContactsContactidFind

Find a missing contact field

Look up a single missing contact field (email, phone, or LinkedIn) using the same web-research path as enrichment columns, then persist it onto the contact on success. Runs the same access gating as reading/enriching the contact: the parent district/school must be unlocked, and the contact itself must be unlocked. Billed **1 credit per successful find only** -- nothing found means nothing charged.

POST
/contacts/{contactId}/find

Look up a single missing contact field (email, phone, or LinkedIn) using the same web-research path as enrichment columns, then persist it onto the contact on success. Runs the same access gating as reading/enriching the contact: the parent district/school must be unlocked, and the contact itself must be unlocked. Billed 1 credit per successful find only -- nothing found means nothing charged.

AuthorizationBearer <token>

API key (sk_live_... prefix). Generate keys in the UI under Settings > API Keys, then send it as Authorization: Bearer sk_live_...

In: header

Path Parameters

contactId*string
Formatuuid

Request Body

application/json

field*string
Value in"email" | "phone" | "linkedin"

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://loading/api/v1/contacts/497f6eca-6276-4993-bfeb-53cbbbba6f08/find" \  -H "Content-Type: application/json" \  -d '{    "field": "email"  }'
{
  "field": "email",
  "value": "string",
  "found": true
}
{
  "error": "string",
  "message": "string",
  "statusCode": -9007199254740991
}
{
  "error": "string",
  "message": "string",
  "statusCode": -9007199254740991
}
{
  "error": "Insufficient credits",
  "message": "string",
  "credits_required": 0,
  "credit_balance": 0
}
{
  "error": "PARENT_ENTITY_LOCKED",
  "message": "string",
  "parent_entity_type": "district",
  "parent_entity_id": "550e8400-e29b-41d4-a716-446655440000",
  "unlock_cost": 0
}
{
  "error": "string",
  "message": "string",
  "statusCode": -9007199254740991
}
{
  "error": "string",
  "message": "string",
  "statusCode": -9007199254740991
}