get https://api.productboard.com/v2/entities
Retrieves a paginated list of Entities. You can filter results, sort them, and control which fields are returned.
Use the type
query parameter to restrict results to a specific entity type (e.g. feature
, initiative
).
Use the fields
parameter to request only the fields you need.
Limitations
- Only the
AND
operator is supported when applying multiple filters.OR
,NOT
, or nested conditions are not supported.
Code examples
Replace <your-token>
with a valid API token.
List all active features owned by a specific user:
curl -X GET "https://api.productboard.com/v2/entities?type=feature&filter=owner.id:123,status.name:Active" \
-H "Authorization: Bearer <your-token>"
Fetch archived components to clean up the product structure:
curl -X GET "https://api.productboard.com/v2/entities?type=component&filter=archived:true" \
-H "Authorization: Bearer <your-token>"
Retrieve a list of features with only id, name and status:
curl -X GET "https://api.productboard.com/v2/entities?type=feature&fields=id,name,status" \
-H "Authorization: Bearer <your-token>"