About this endpoint
What it does
Analyzes and compares the website URLs you submit in the request body, then returns a similarity report with overall and per-site insights. The response includes the service tier used, the service name, analysis insights, and a generation timestamp.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| urls | String Array | Yes | List of website URLs to analyze and compare. Each item must be a URI. |
Response
Returns a JSON object with tier and service string fields, an insights object field, and a timestamp date-time string field. The insights object contains a global object with an explanation string and similarityScore number, plus a siteReports array of per-URL analysis objects.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| tier | ENUM | No | The service tier applied to this analysis. Allowed values: standard, premium. |
| service | String | No | The name of the analysis service used to generate this report. |
| insights | Object | No | Analysis results. Contains global and siteReports. |
| insights.global | Object | No | Global similarity summary. Contains explanation and similarityScore. |
| insights.global.explanation | String | No | A narrative explanation of the global similarity result. |
| insights.global.similarityScore | Number | No | Overall similarity score across all submitted websites, from 0 to 100. |
| insights.siteReports | Object Array | No | Individual analysis reports for each submitted URL. |
| insights.siteReports[].url | String | No | The URL of the analyzed website. Must be a URI. |
| insights.siteReports[].seoScore | Number | No | The SEO score for this website, from 0 to 100. |
| insights.siteReports[].aiSummary | String | No | An AI-generated summary of the website's content and positioning. |
| insights.siteReports[].suggestedImprovements | String Array | No | A list of suggested SEO/content improvements for this website. |
| timestamp | String | No | The timestamp at which the analysis was generated. Format: date-time. |