1. Create an account and get your API key

Create an account

Get your API key.

2. Make an API request

Base URL

https://searchlysis.com/api

Authentication

To authenticate you need to add an x-api-key header with the contents of the header being your API Key. All API endpoints are authenticated using Api Keys and picked up from the specification file.

API Key
{
  headers: {
    "x-api-key": "sk_123456789"
  }
}

Request Example

Analyze search, Real-time SERP links’web pages to LLM analyses

curl --location 'https://searchlysis.com/api/v1/search' \
--header 'x-api-key: sk_123456789' \
--header 'Content-Type: application/json' \
--data '{
    "query": "Searchlysis",
    "prompt": "Summarize it"
}'