API Credentials |

Queue a seller check and poll for the boolean verdict using live API calls. All requests require authentication and return structured JSON.

Prefer no-code? Try the no-code version - same results, simpler interface.

Request Builder

Or Check Existing Request

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

Response Viewer

Loading request builder...

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/checkseller \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your_api_key_here" \
  -H "X-API-Secret: your_api_secret_here" \
  -d '{
    "company_name": "Acme Cloud",
    "product_service": "SOC 2 automation platform"
  }'
Webhook Payload
POST https://example.com/webhooks/checkseller
Content-Type: application/json

{
  "request_id": "cocs_64f2d8e4_1700000123",
  "status": "completed",
  "result": {
    "company": "Acme Cloud",
    "product_service": "SOC 2 automation platform",
    "sells": true,
    "confidence": "medium",
    "evidence": "Acme Cloud lists SOC 2 automation on its compliance solutions page."
  },
  "created_at": "2025-11-10T22:20:03Z",
  "completed_at": "2025-11-10T22:20:17Z"
}

Response Format

Successful responses follow this structure:

{
  "success": true,
  "data": {
    "request_id": "cocs_64f2d8e4_1700000123",
    "status": "completed",
    "result": {
      "company": "Acme Cloud",
      "product_service": "SOC 2 automation platform",
      "sells": true,
      "confidence": "medium",
      "evidence": "Acme Cloud lists SOC 2 automation on its compliance solutions page."
    },
    "created_on": "2025-11-10T22:20:03Z",
    "completed_on": "2025-11-10T22:20:17Z",
    "callback_url": "https://example.com/webhooks/checkseller"
  },
  "timestamp": "2025-11-10T22:20:17Z"
}

Try no-code tool for a simpler, no-code interface.