ProductSignals API — Docs

API for product reliability analysis based on publicly available sources (Trustpilot, Reddit, ArnaqueOuFiable, Gridinsoft).

Current version: v1 (Changelog).


Base URL

https://productsignalsapi.analyses-web.com

Endpoint

POST /v1/product-signals

Authentication

Send your API key in the request header:

X-API-Key: YOUR_API_KEY

Request

JSON body (minimal):

{
  "productName": "Example",
  "language": "fr"
}
Field Type Required Description
productName string Yes Product / merchant name to analyze.
language string Yes Language code (example: fr).

Example (curl)

curl -X POST https://productsignalsapi.analyses-web.com/v1/product-signals \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{"productName":"Example","language":"fr"}'

Sources

Quota

Monthly quota is enforced per API key (plan-dependent). When the monthly quota is exhausted, requests are rejected.

Errors

Errors are returned as JSON. Use the HTTP status code + JSON payload to diagnose invalid input, authentication issues, or quota/rate limiting.