targets
Browse available targets in the catalog
This endpoint returns a paginated list of all available targets that can be used in experiments. Use this to discover and browse targets before selecting them for your experiments.
Use Cases
- Browse the full catalog of available targets
- Search for targets by category or status
- Build target selection interfaces in your application
Pagination
The response is paginated to handle large catalogs efficiently. Use the page
and per_page
parameters to navigate through results.
Example Workflow
- Call this endpoint to get the first page of targets
- Use the
total
field to determine how many pages exist - Navigate pages using the
page
parameter - Select a target ID and use
/targets/{target_id}
for full details
GET
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Page number to retrieve (defaults to 1)
Required range:
x >= 0
Number of items per page (defaults to 20, max 100)
Required range:
x >= 0
Response
200 - application/json
Successfully retrieved target list
Paginated response containing a list of targets
This response structure supports pagination for efficiently browsing large catalogs of available targets.