curl -X GET "https://parsagon.io/api/events/v1/search/" \
-H "Authorization: Token YOUR_API_KEY_HERE"
{
"count": 844,
"next": "https://parsagon.io/api/events/v1/search/?limit=10&offset=10",
"previous": null,
"results": [
{
"id": 4973,
"categories": [2282],
"context": "User is a Government Relations Manager for a fintech company in Germany",
"filter_prompt": "Regulations and policies related to financial technology (fintech) industry development and oversight in Germany\nData privacy and cybersecurity laws impacting fintech companies, including compliance with GDPR and other data protection standards",
"date_range": {"duration_seconds": 604800, "end_date": null},
"created_at": "2026-03-25T12:55:13.665178Z",
"error": null,
"labels": {}
},
...
]
}
Endpoints
List searches
Retrieve a list of all searches made on your account, including both Quick Searches and Advanced Searches.
curl -X GET "https://parsagon.io/api/events/v1/search/" \
-H "Authorization: Token YOUR_API_KEY_HERE"
{
"count": 844,
"next": "https://parsagon.io/api/events/v1/search/?limit=10&offset=10",
"previous": null,
"results": [
{
"id": 4973,
"categories": [2282],
"context": "User is a Government Relations Manager for a fintech company in Germany",
"filter_prompt": "Regulations and policies related to financial technology (fintech) industry development and oversight in Germany\nData privacy and cybersecurity laws impacting fintech companies, including compliance with GDPR and other data protection standards",
"date_range": {"duration_seconds": 604800, "end_date": null},
"created_at": "2026-03-25T12:55:13.665178Z",
"error": null,
"labels": {}
},
...
]
}
Returns all searches associated with your account, ordered from most recent to oldest. Both Quick Searches and Advanced Searches appear in this list and count equally toward your quota.
Response
array
Array of Search objects.
Show Search object fields
Show Search object fields
number | string
Unique identifier for the Search.
array
Array of category IDs used in the search.
string
Context provided in the request.
string
Filter prompt provided in the request.
object
Labels provided in the request.
object
The date range used, containing either
start_date and end_date, or duration_seconds.string
Timestamp when the Search was created (ISO 8601, UTC).
string | null
Error message if the search failed; otherwise
null.{
"count": 844,
"next": "https://parsagon.io/api/events/v1/search/?limit=10&offset=10",
"previous": null,
"results": [
{
"id": 4973,
"categories": [2282],
"context": "User is a Government Relations Manager for a fintech company in Germany",
"filter_prompt": "Regulations and policies related to financial technology (fintech) industry development and oversight in Germany\nData privacy and cybersecurity laws impacting fintech companies, including compliance with GDPR and other data protection standards",
"date_range": {"duration_seconds": 604800, "end_date": null},
"created_at": "2026-03-25T12:55:13.665178Z",
"error": null,
"labels": {}
},
...
]
}
curl -X GET "https://parsagon.io/api/events/v1/search/" \
-H "Authorization: Token YOUR_API_KEY_HERE"
⌘I