Find similar coverage

Everything the index has about the same story as an article.

POST /v1/similar reads an article and searches the index for others about the same story. Use it to see how a story was covered elsewhere, to find the original source, or to widen a single link into full coverage.

const res = await ts.similar('https://www.lanacion.com.ar/economia/…', {
  mode: 'fast',
  exclude_domains: ['lanacion.com.ar'],
});

console.log(res.reference?.title);
for (const r of res.results) console.log(r.source, r.title);

The response has the same shape as a search, plus reference: the URL and title of the article you passed. Every search option and filter works here too — excluding the reference’s own domain is the usual one.

Combine it with dedupe: true to get one result per story, or with diffusion to see who published first.