Paqle
With a Paqle subcription, you are able to search for news-articles on the internet, regarding both companies and people. This page describes how to use the functionality through the Lasso API.
This API requires a Paqle subscription
Contact Lasso X at contact@lassox.com or +45 7174 7812 for information
Getting articles about a company or person
To fetch articles that mentions a specific company or person, use the following endpoint, replacing LASSOID with a Lasso Id.
GET api.lassox.com/data/paqle/{lassoid}/news
GET api.lassox.com/data/paqle/CVR-1-34580820/news
{
"news": [
{
"promotedUntil": "2020-01-21T15:38:00Z",
"headline": "Lasso X arbejder på et system til at bekæmpe svindel",
"content": "Firmaet Lasso X forventer efter sommerferien at være klar med et nyt system til den finansielle sektor, der kan hjælpe med at bekæmpe svindel. ",
"url": "http://entityapi.paqle.net/articles/92e47f546b6c0c6ea1b5ea89daf4918da3c0353227e98336af2480f17151073e761fddcb9d92a1c44cd766b2c483e4e4",
"time": "2020-01-21T15:38:00Z",
"storyId": "15.0",
"tagLine": null,
"imageId": null,
"type": "Paqle",
"provider": "Paqle",
"providerData": {
"published": "2020-01-21T15:38:00Z",
"sourceName": "Complidia Finans",
"url": "http://entityapi.paqle.net/articles/92e47f546b6c0c6ea1b5ea89daf4918da3c0353227e98336af2480f17151073e761fddcb9d92a1c44cd766b2c483e4e4",
"headline": [
{
"text": "Lasso X",
"highlight": true
},
{
"text": " arbejder på et system til at bekæmpe svindel",
"highlight": false
}
],
"extract": [
{
"text": "Firmaet ",
"highlight": false
},
{
"text": "Lasso X",
"highlight": true
},
{
"text": " forventer efter sommerferien at være klar med et nyt system til den finansielle sektor, der kan hjælpe med at bekæmpe svindel. ",
"highlight": false
}
],
"paqleUrl": "https://www.paqle.dk/p/lasso-x-a-s/607827",
"clusterHash": "d60a77327b764b11dc007ccf9d772023"
},
"uniqueId": "d60a77327b764b11dc007ccf9d772023",
"lassoIds": []
}
],
"continuationToken": "e0748b230b3bfe06e7392955f0c8d332b7c5da8467258719f5984efdb7744e3a"
}
The url
property is the link to the actual article on the internet.
Note that you can retrieve the next page of results, as the endpoint only returns up to 100 articles. To do so, include a parameter cToken
set to the value of continuationToken
from the previous page.
Getting a link to a company or person on the Paqle website
The Paqle website visually lists all the found articles about companies and people. To get a direct link to the page for a given company or person, use the following endpoint:
GET api.lassox.com/data/paqle/{lassoid}/entity
GET api.lassox.com/data/paqle/CVR-1-34580820/entity
{
"published": true,
"type": "Organization",
"paqleUrl": "https://www.paqle.dk/p/lasso-x-a-s/607827",
"originalId": 607827,
"currentId": 15283601,
"sectionsDk": {
"cvrMetadata": [
{
"cvrId": "4001900300"
}
]
},
"sections": null,
"newsHash": null
}
The paqleUrl
property is the link to the actual article on the internet.