How can I get articles related to a given article indexed by Daylife?
We have an API call article_getRelatedArticles that returns articles from the same story cluster that your article belongs to. However, a lot of times your article might not get clustered with a big story or you want related articles from the past. In that case, you can use a combination of API calls to get these related articles. Here is how: • You first call article_getTopics to get the list of topics mentioned in your articles with sort=relevance and the primary input is the article URL. The trick here is that the article URLs you use to query should be exactly the same as you publish in your RSS feeds, because those are the URLs we have in our databases to match against. • You take the 2 most relevant topics returned and then call our search_getRelatedArticles API with query=”Topic A” AND “Topic B” If you want to restrict the results only to your publications, you can use the parameters source_whitelist=sourceidA&source_whitelist=sourceidB&source_whitelist=sourceidC and so on. You