Source

List Sources

GET
Returns metadata for all sources that Sayari collects data from

Query parameters

limitintegerOptional
A limit on the number of objects to be returned with a range between 1 and 100. Defaults to 100.
offsetintegerOptional
Number of results to skip before returning response. Defaults to 0.

Response

This endpoint returns an object
data
list of objects
limit
integer
next
boolean
offset
integer
size
object
GET
1curl -G https://api.sayari.com/v1/sources \
2 -H "Authorization: Bearer <token>" \
3 -d limit=2
200
Retrieved
1{
2 "data": [
3 {
4 "id": "e85d865943ee6d8369307569d2ad9de0",
5 "label": "Acuris Risk Intelligence Adverse Media Data",
6 "description": "Contains PDFs and URLs to adverse media reporting for PEPs, SOEs, sanctioned entities, and entities linked to financial regulatory and law enforcement actions. Available for millions of entities from 'Acuris Risk Intelligence KYC6 (3rd Party Data)' in 'Records' section.",
7 "country": "XXX",
8 "region": "international_(multi-region_coverage)",
9 "date_added": "2022-04-11",
10 "source_type": "adverse_media_/_negative_news_data",
11 "record_type": "adverse_media_record",
12 "structure": "unstructured",
13 "pep": false,
14 "watchlist": false,
15 "source_url": "https://www.acurisriskintelligence.com/"
16 },
17 {
18 "id": "a8c6ee1cd4dfc952105ee8c0e4836f08",
19 "label": "Acuris Risk Intelligence KYC6 (3rd Party Data)",
20 "description": "Contains profiles of PEPs, sanctioned entities, SOEs, and entities linked to financial regulatory and law enforcement actions from hundreds of international watchlists. Provides identifying information on individuals and companies as available.",
21 "country": "XXX",
22 "region": "international_(multi-region_coverage)",
23 "date_added": "2022-02-09",
24 "source_type": "risk_intelligence_data",
25 "record_type": "risk_intelligence_record",
26 "structure": "unstructured",
27 "pep": false,
28 "watchlist": false,
29 "source_url": "https://www.acurisriskintelligence.com/"
30 }
31 ],
32 "limit": 2,
33 "next": true,
34 "offset": 0,
35 "size": {
36 "count": 547,
37 "qualifier": "eq"
38 }
39}