Retrieve the current state of a previously created Advanced Search. Poll this endpoint after creating a search to check whether processing is complete.
Searches typically complete within 1–5 minutes. Poll approximately once every 15 seconds until search_results, edited_results, and/or error are non-null.
Path parameters
The id returned when the Search was created.
Response
Returns a JSON object representing the Search, with the same fields as the POST /search/ response.
Unique identifier for the Search.
Array of category IDs used in the search.
Context provided in the request.
Filter prompt provided in the request.
The date range used, containing either start_date and end_date, or duration_seconds.
Timestamp when the Search was created (ISO 8601, UTC).
Raw search results when processing is complete, null otherwise. Each item has the same fields as Quick Search results.
AI-generated monitoring report when processing is complete, null otherwise. Includes the report in both HTML and Markdown formats.
Error message if the search failed; otherwise null.
Example (cURL)
curl -X GET "https://parsagon.io/api/events/v1/search/12345/" \
-H "Authorization: Token YOUR_API_KEY_HERE" \
-H "Content-Type: application/json"