Search Analysis Groups
Search for an existing Analysis Group.
Authorizations
AuthorizationstringRequired
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
Query parameters
qstringOptionalExample:
Query string to be matched against Group name.
MyAnalysisGroupoffsetintegerOptionalDefault:
Offset the results.
0limitintegerOptionalDefault:
Limit the number of results.
10Responses
200
Successful Response
application/json
422
Validation Error
application/json
get
/v1/beam/analysis-groupsExamples
curl -X GET "https://api.predicthq.com/v1/beam/analysis-groups?status=active&sort=updated" \
-H "Accept: application/json" \
-H "Authorization: Bearer $ACCESS_TOKEN"import requests
response = requests.get(
url="https://api.predicthq.com/v1/beam/analysis-groups",
headers={
"Authorization": "Bearer $ACCESS_TOKEN",
"Accept": "application/json"
},
params={
"status": "active",
"sort": "updated"
}
)
print(response.json())OpenAPI Spec
Last updated
Was this helpful?