For the complete documentation index, see llms.txt. This page is also available as Markdown.

Search Analysis Groups

Search for an existing Analysis Group.

Search Analysis Groups

get

Returns a paginated list of your Analysis Groups. Supports filtering by status, readiness_status, industry, interval, and date range.

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
updated.gtstring · dateOptional

Filters analysis groups updated after the specified date (exclusive).

Example: 2017-01-01
updated.gtestring · dateOptional

Filters analysis groups updated on or after the specified date.

Example: 2017-01-01
updated.ltstring · dateOptional

Filters analysis groups updated before the specified date (exclusive).

Example: 2025-01-07
updated.ltestring · dateOptional

Filters analysis groups updated on or before the specified date.

Example: 2025-01-07
qstring · max: 500Optional

Query string to be matched against Group name.

Example: MyAnalysisGroup
offsetintegerOptional

Offset the results.

Default: 0
limitintegerOptional

Limit the number of results.

Default: 10
Responses
200

Successful Response

application/json
countintegerRequired

Total number of analysis groups matching the query.

get/v1/beam/analysis-groups

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"

OpenAPI Spec

The OpenAPI spec for Beam API can be found here.

Last updated

Was this helpful?