Loading...
Integrate Signal scoring into your own tools. Programmatic access to company AI readiness data.
API access requires a Pro subscription ($199/mo). Once enrolled, generate an API key from your dashboard. Include it in every request as a Bearer token.
Submit a company for analysis. Returns a report ID and slug for polling.
Retrieve a report by slug. Returns full or redacted data based on payment status.
const res = await fetch("https://reallyai.app/api/scan", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ companyName: "Salesforce" }),
});
const { slug } = await res.json();async function pollReport(slug) {
while (true) {
const res = await fetch(`https://reallyai.app/api/report/${slug}`);
const data = await res.json();
if (data.status === "complete") return data.report;
if (data.status === "failed") throw new Error(data.error);
await new Promise(r => setTimeout(r, 2000));
}
}API access is included with the Pro plan. Start with a free analysis to see the data, then upgrade when you're ready to build on it.