AI · Lovable
Use Getspotted with Lovable
Connect Getspotted to Lovable via REST API. Once connected, Lovable 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
- 1Create an API key (
gsp_live_…) in your Getspotted dashboard. - 2Add the config below to Lovable (
Call the API from your app) and paste your key. - 3Call the endpoint from your app and read the cited sources from the response.
Call the API from your app
const res = await fetch("https://getspotted.ai/api/v1/search", {
method: "POST",
headers: { authorization: "Bearer gsp_live_…", "content-type": "application/json" },
body: JSON.stringify({ 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 Lovable
Send this query:
{ "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 Lovable?
Call the Getspotted REST API from Lovable 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 Lovable?
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 Lovable 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.