StoreCollectionClient
Hierarchy
- ResourceCollectionClient
- StoreCollectionClient
Index
Properties
inheritedapifyClient
inheritedbaseUrl
inheritedhttpClient
optionalinheritedid
optionalinheritedparams
inheritedpublicBaseUrl
inheritedresourcePath
optionalinheritedsafeId
inheritedurl
Methods
list
Lists Actors from the Apify Store.
Awaiting the return value (as you would with a Promise) will result in a single API call. The amount of fetched items in a single API call is limited.
const paginatedList = await client.list(options);Asynchronous iteration is also supported. This will fetch additional pages if needed until all items are retrieved.
for await (const singleItem of client.list(options)) {...}Parameters
options: StoreCollectionListOptions = {}
Search and pagination options.
Returns PaginatedIterator<ActorStoreList>
A paginated iterator of store Actors.
Client for browsing Actors in the Apify Store.
The Apify Store contains publicly available Actors that can be used by anyone. This client provides methods to search and list Actors from the Store.
https://docs.apify.com/platform/actors/publishing