Using Saber Signals API in Clay

Prerequisites

  • A Saber API key with access to the Signals API

  • A Clay account with HTTP API enrichment capabilities

Company Signals

Research companies with specific questions. Saber uses agentic AI to continuously uncover data, including from sources you'd have a hard time accessing otherwise. Think of it as a fast and easy way to uncover insights on any company using their domain.

Endpoint

POST https://api.saber.app/v1/companies/signals/sync

Headers

Authorization: Bearer YOUR_SABER_API_KEY

Content-Type: application/json

X-Sbr-Timeout-Sec: 110

Request Body

{
  "domain": "anthropic.com",
  "question": "What is their main product?",
  "answerType": "open_text"
}

Parameters

Parameter

Type

Required

Description

domain

string

Company domain (e.g., "anthropic.com") - no https://

question

string

Signal question (max 500 chars)

answerType

string

Answer format: open_text, number, boolean, list, percentage, currency, url

forceRefresh

boolean

Force re-run and skip cache (default: false)

verificationMode

string

strict or lenient verification (default: strict)

Headers

Header

Description

X-Sbr-Timeout-Sec

Override sync timeout (1-300 seconds, default: 110)

X-Sbr-Timeout-Error

If "true", return 408 on timeout; if "false", return 202 with latest status (default: false)

Response

{
  "id": "263c03af-660a-47e6-831f-489646aef351",
  "status": "completed",
  "domain": "anthropic.com",
  "question": "What is their main product?",
  "answer": {
    "type": "open_text",
    "openText": {
      "value": "Anthropic's main product is Claude, a family of large language models and a generative AI assistant."
    }
  },
  "confidence": 0.9,
  "sources": [
    {
      "title": "Anthropic's Products and Contributions",
      "url": "https://oboe.com/learn/anthropic-ai-explained-1eba5mn/anthropics-products-and-contributions-14r9vpz",
      "snippet": "Anthropic's primary product is a family of large language models named Claude..."
    }
  ],
  "createdAt": "2026-01-19T11:42:28.417Z",
  "completedAt": "2026-01-19T11:42:41.681Z"
}

Example Questions

Company Signals:

  • "What is their main product?"
    (use answerType: "open_text")

  • "How many employees do they have?"
    (use answerType: "number")

  • "What is their annual revenue?"
    (use answerType: "currency")

  • "What CRM stack do they use?"
    (use answerType: "list")

  • "Who are their main competitors?"
    (use answerType: "list")

  • "What funding rounds did they raise?"
    (use answerType: "list")

  • "Are they a remote-first company?"
    (use answerType: "boolean")

  • "Who are their latest leadership hires?"
    (use answerType: "url")