Skip to main content
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

results
array
Array of Search objects.
{
  "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"