API Credentials |

Company Intent API Playground

Queue live intent requests, poll for completion, and inspect ranked people who have demonstrated interest in similar products.

Request Builder

Used to identify people with demonstrated interest in similar products.
Returned people are scored by likely ICP fit for this company.
Credits are charged at 10 credits per person returned.
Uses a faster, lower-cost lookup path. Credits are charged at 5 credits per person returned.

Request Notes

  • Required: interest_company_domain and icp_company_domain
  • Default limit: max_results = 25
  • Lite lookup: Optional lower-cost mode for broader demonstrated-interest signals.
  • Async flow: Queue with POST, then poll with GET or wait for your callback.

Response Viewer

Loading request builder...

Or Check Existing Request

Paste a request ID from a previous request to check its status.

Example Requests

Your API credentials are pre-filled. Click "Copy" to copy the command to your clipboard.

cURL Example
curl -X POST https://api.nyne.ai/company/intent \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your_api_key_here" \
  -H "X-API-Secret: your_api_secret_here" \
  -d '{
    "interest_company_domain": "gong.io",
    "icp_company_domain": "salesforce.com",
    "max_results": 25,
    "lite_lookup": true
  }'
Webhook Example
POST https://example.com/webhook/company-intent
Content-Type: application/json

{
  "request_id": "65f6d9f92799d3c2a24123f4f13a7d7a3af6ac13f1d8d0695dce03b98a4e5220",
  "status": "completed",
  "total_results": 1,
  "credits_charged": 10,
  "results": [
    {
      "score": 92,
      "displayname": "Jane Doe",
      "social_profiles": {
        "linkedin": {
          "url": "https://www.linkedin.com/in/janedoe"
        }
      }
    }
  ],
  "metadata": {
    "returned_results": 1,
    "processed_at": "2026-04-20T21:18:41Z"
  }
}

Response Format

Completed responses return a request status wrapper plus ranked ICP candidates ordered from highest score to lowest score.

{
  "success": true,
  "data": {
    "request_id": "65f6d9f92799d3c2a24123f4f13a7d7a3af6ac13f1d8d0695dce03b98a4e5220",
    "status": "completed",
    "interest_company_domain": "gong.io",
    "icp_company_domain": "salesforce.com",
    "max_results": 25,
    "max_results_mode": "finite",
    "effective_output_cap": 25,
    "lite_lookup": false,
    "results": [
      {
        "score": 92,
        "score_reason": "Senior revenue leader at a B2B software company with strong demonstrated interest signals.",
        "displayname": "Jane Doe",
        "organizations": [
          {
            "name": "Example Software",
            "title": "VP Sales",
            "is_current": true
          }
        ],
        "social_profiles": {
          "linkedin": {
            "url": "https://www.linkedin.com/in/janedoe"
          }
        },
        "latest_interest_date": "2026-04-19",
        "intent_signals": {
          "signal_count": 3,
          "latest_interest_date": "2026-04-19"
        }
      }
    ],
    "total_results": 1,
    "credits_charged": 10,
    "metadata": {
      "interest_company_domain": "gong.io",
      "icp_company_domain": "salesforce.com",
      "lite_lookup": false,
      "max_results_mode": "finite",
      "requested_max_results": 25,
      "effective_output_cap": 25,
      "returned_results": 1,
      "processed_at": "2026-04-20T21:18:41Z"
    }
  },
  "timestamp": "2026-04-20T21:18:41Z"
}