About this endpoint
What it does
Analyzes the similarity of the websites provided in the request body and returns a JSON report with overall results plus per-site analysis details.
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 these top-level fields: tier string, service string, insights object, and timestamp string (date-time). The insights object contains a global object with the overall similarity explanation and score, plus a siteReports array with one report per analyzed URL.
| 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 object. Contains global and siteReports. |
| insights.global | Object | No | Global similarity result object. 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. |