List all public retrievers with pagination and search.
This endpoint allows browsing and discovering all published retrievers across all organizations. No authentication required.
Authentication:
Pagination:
Search:
Filtering:
include_inactive=true to see all retrieversResponse includes:
What’s NOT exposed:
Example:
# List all public retrievers (first page)
curl -X GET "https://api.mixpeek.com/v1/public/retrievers/"
# Search for video-related retrievers
curl -X GET "https://api.mixpeek.com/v1/public/retrievers/?search=video&page_size=50"
# Get page 2 with custom page size
curl -X GET "https://api.mixpeek.com/v1/public/retrievers/?page=2&page_size=50"
Use Cases:
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Page number (1-indexed)
x >= 1Results per page (max 100)
1 <= x <= 100Include inactive retrievers in results
Search query for filtering by title or description
Successful Response
Response for listing public retrievers.
Follows the same pattern as ListCollectionsResponse for consistent developer experience.
List of public retrievers
Total number of public retrievers matching the query
Current page number
Results per page
Total number of pages
Aggregate statistics across all public retrievers