Skip to main content
DeepCurrent offers three packages for finding the right people to build with or amplify your project. Use the tabs below to explore each one.

Active Builder Discovery

The builder-discovery-v1 package finds Web3 builders by role category, skills, and ecosystem context — returning person-first profiles ready for outreach.Required slots: category, limitOptional slots: ecosystem, location, skills_focusTier 1 returns: name, category, skills, person_role, company_name, location, description, intelligence_blurb, challenge_name, rationaleTier 2 expansion (contact unlock): email, X_URL, LinkedIn_URL, Telegram_URL, telegram_handle, Github_URL, phone

Full workflow

1

Resolve

curl -X POST https://api.deepcurrent.app/api/v1/intelligence/resolve \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "package_id": "builder-discovery-v1",
    "request_text": "Find 15 smart contract developers on Ethereum with Solidity and DeFi experience",
    "slots": {}
  }'
{
  "intent_status": "ready_for_quote",
  "package_id": "builder-discovery-v1",
  "filled_slots": {
    "category": "smart contract devs",
    "ecosystem": "Ethereum",
    "skills_focus": "Solidity, DeFi",
    "limit": 15
  },
  "missing_slots": []
}
2

Quote

curl -X POST https://api.deepcurrent.app/api/v1/intelligence/quote \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "package_id": "builder-discovery-v1",
    "slots": {
      "category": "smart contract devs",
      "ecosystem": "Ethereum",
      "skills_focus": "Solidity, DeFi",
      "limit": 15
    },
    "output_fields": [
      "name", "category", "skills", "person_role",
      "company_name", "location", "intelligence_blurb", "rationale"
    ]
  }'
The response includes credits, quote_token, and expiry.
3

Execute

curl -X POST https://api.deepcurrent.app/api/v1/intelligence/execute \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "package_id": "builder-discovery-v1",
    "slots": {
      "category": "smart contract devs",
      "ecosystem": "Ethereum",
      "skills_focus": "Solidity, DeFi",
      "limit": 15
    },
    "output_fields": [
      "name", "category", "skills", "person_role",
      "company_name", "location", "intelligence_blurb", "rationale"
    ],
    "quote_token": "eyJ..."
  }'
{
  "result_id": "3fa85f64-...",
  "summary": "15 Ethereum smart contract developers with Solidity and DeFi skills.",
  "records_count": 15
}
4

Expand contact details (optional)

Use POST /api/v1/intelligence/expand with expansion_type: "contact_unlock" to unlock email, LinkedIn, Telegram, GitHub, or phone for any subset of your results.Contact tiers — social, email, telegram, phone — are additive. You are never charged twice for the same person at the same tier.

Unlocking contact details

All three packages support Tier 2 contact expansion. After executing a search, call POST /api/v1/intelligence/expand with:
{
  "parent_result_id": "YOUR_RESULT_ID",
  "expansion_type": "contact_unlock",
  "expansion_params": {
    "selection": {
      "mode": "top_n",
      "n": 10
    },
    "contact_tier": "email"
  },
  "quote_token": "eyJ..."
}
Selection modes:
ModeDescription
allUnlock every record in the result set
top_nUnlock the top N records by relevance score
explicit_idsUnlock a specific list of record IDs
Contact tiers (each tier includes everything below it):
TierUnlocks
socialX, LinkedIn, GitHub
emailEmail + social
telegramTelegram + email + social
phonePhone + telegram + email + social
You are never charged twice for the same person at the same tier. If a record is already unlocked at the requested tier, its cost is excluded from the quote automatically.