AI · Replit

Use Getspotted with Replit

Connect Getspotted to Replit via REST API. Once connected, Replit can find the sources AI engines (ChatGPT, Claude, Perplexity, Gemini) and Google cite for any query, and pull the contacts behind them.

Set up in 3 steps

  1. 1Create an API key (gsp_live_…) in your Getspotted dashboard.
  2. 2Add the config below to Replit (Call the API from your Repl) and paste your key.
  3. 3Call the endpoint from your app and read the cited sources from the response.

Call the API from your Repl

python
import requests
res = requests.post(
    "https://getspotted.ai/api/v1/search",
    headers={"authorization": "Bearer gsp_live_…"},
    json={"query": "best CRM for B2B SaaS", "country": "US"},
)

Replace gsp_live_… with an API key from your dashboard. Each search costs 10 credits; contact lookups cost 2.

Try it in Replit

Send this query:

json
{ "query": "best CRM for B2B SaaS", "country": "US" }

You get back the scored sources per engine, the cross-engine hotspots, and (on request) the contacts to reach out to.

FAQ

How do I connect Getspotted to Replit?

Call the Getspotted REST API from Replit with your gsp_live_… key. Send a query and a country, and you get back the cited sources and the contacts behind them.

Which AI engines does Getspotted cover?

Every search covers six engines: Google, ChatGPT, Google AI Overview, Perplexity, Claude and Gemini. Sources cited across multiple engines are flagged as hotspots.

Is there a free tier, and what does it cost in Replit?

Yes. Every account starts with a free search; paid plans start at $20/mo. Each search costs 10 credits and a contact lookup costs 2 credits, billed the same whether you call it from Replit or the API directly.

Do I need an API key?

Yes. Create a key (gsp_live_…) in your Getspotted dashboard and paste it into the config. Keep it secret; it authenticates and meters your usage.

Other agents