{ "opencollection": "1.0.0", "info": { "name": "Honeycomb Auth Query Data API", "version": "1.0.0" }, "items": [ { "info": { "name": "Query Data", "type": "folder" }, "items": [ { "info": { "name": "Create a Query Result", "type": "http" }, "http": { "method": "POST", "url": "https://api.honeycomb.io/1/query_results/:datasetSlug", "params": [ { "name": "datasetSlug", "value": "", "type": "path", "description": "The dataset slug or use `__all__` for endpoints that support environment-wide operations.\n" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Kick off processing of a Query to then get back the Query Results.\nOnce the Query Result has been created, the query will be run asynchronously, allowing the result data to be fetched from the GET query result endpoint.\nA maximum duration of 7 days of data can be queried. Any queries with a `start_time`, `end_time`, or `time_range` resulting in a duration longer than 7 days will result in a `400` error response.\n" }, { "info": { "name": "Get Query Result", "type": "http" }, "http": { "method": "GET", "url": "https://api.honeycomb.io/1/query_results/:datasetSlug/:queryResultId", "params": [ { "name": "datasetSlug", "value": "", "type": "path", "description": "The dataset slug or use `__all__` for endpoints that support environment-wide operations.\n" }, { "name": "queryResultId", "value": "", "type": "path", "description": "The unique identifier (ID) of the query result." } ] }, "docs": "Get the Query Result details for a specific Query Result ID.\nThis endpoint is used to fetch the results of a query that had previously been created. It is recommended to follow the Location header included in the Create Query Result output, but the URL can also be constructed manually with the <query-result-id>.\n" } ] } ], "bundled": true }