The Card Collections endpoint allows you to retrieve card collections from your Storyteller tenant. This is a minimal endpoint that returns basic identifiers and titles, alphabetically sorted.
Page number for pagination. Ignored when skipCount or maxResultCount is supplied.
pageSize
integer
No
10
Number of items per page. Must be between 1 and 1000. Ignored when skipCount or maxResultCount is supplied.
skipCount
integer
No
0
Legacy offset-style pagination alias. Defaults to 0 when omitted while using legacy pagination.
maxResultCount
integer
No
10
Legacy offset-style page-size alias. Defaults to 10 when omitted while using legacy pagination. Maximum 1000.
You can page this endpoint using either currentPage + pageSize or legacy-style skipCount + maxResultCount.
In legacy mode, omitted aliases fall back to skipCount=0 and maxResultCount=10. Because integrations responses still return currentPage, skipCount must land on a page boundary for the effective page size.
# Get card collectionscurl-XGET"https://integrations.usestoryteller.com/api/card-collections"\-H"x-storyteller-api-key: your-api-key-here"# Search for specific card collectionscurl-XGET"https://integrations.usestoryteller.com/api/card-collections?searchText=product&pageSize=20"\-H"x-storyteller-api-key: your-api-key-here"