Search Analysis Groups
Search for an existing Analysis Group.
Enter your PredictHQ API key. The Bearer prefix is added automatically.
When calling the API directly, send: Authorization: Bearer <YOUR_API_KEY> as documented at https://docs.predicthq.com/api/overview/authenticating
Filters analysis groups updated after the specified date (exclusive).
2017-01-01Filters analysis groups updated on or after the specified date.
2017-01-01Filters analysis groups updated before the specified date (exclusive).
2025-01-07Filters analysis groups updated on or before the specified date.
2025-01-07Query string to be matched against Group name.
MyAnalysisGroupOffset the results.
0Limit the number of results.
10Successful Response
Total number of analysis groups matching the query.
Bad Request
Unauthorized
Bearer token scope insufficient
Examples
curl -X GET "https://api.predicthq.com/v1/beam/analysis-groups?status=active&sort=updated" \
-H "Accept: application/json" \
-H "Authorization: Bearer $API_TOKEN"import requests
response = requests.get(
url="https://api.predicthq.com/v1/beam/analysis-groups",
headers={
"Authorization": "Bearer $API_TOKEN",
"Accept": "application/json"
},
params={
"status": "active",
"sort": "updated"
}
)
print(response.json())OpenAPI Spec
Last updated
Was this helpful?