---
title: "Get list of Actors in Store"
method: GET
path: "/v2/store"
tags: ["Store"]
---

# Get list of Actors in Store

`GET /v2/store`

Gets the list of public Actors in Apify Store. You can use `search`
parameter to search Actors by string in title, name, description, username
and readme.
If you need detailed info about a specific Actor, use the [Get
Actor](#/reference/actors/actor-object/get-actor) endpoint.

The endpoint supports pagination using the `limit` and `offset` parameters.
It will not return more than 1,000 records.

## Query parameters

- `limit` number, double
- `offset` number, double
- `search` string
- `sortBy` string
- `category` string
- `username` string
- `pricingModel` 'FREE' | 'FLAT_PRICE_PER_MONTH' | 'PRICE_PER_DATASET_ITEM' | 'PAY_PER_EVENT'
- `allowsAgenticUsers` boolean
- `responseFormat` 'full' | 'agent'
- `includeUnrunnableActors` boolean

## Response `200`

- ListOfActorsInStoreResponse
  - `data` ListOfStoreActors, required — Common pagination fields for list responses.
    - `total` integer, required — The total number of items available across all pages.
    - `offset` integer, required — The starting position for this page of results.
    - `limit` integer, required — The maximum number of items returned per page.
    - `desc` boolean, required — Whether the results are sorted in descending order.
    - `count` integer, required — The number of items returned in this response.
    - `items` StoreListActor[], required
      - `id` string, required
      - `title` string, required
      - `name` string, required
      - `username` string, required
      - `userFullName` string, nullable
      - `description` string, nullable
      - `categories` string[]
      - `notice` 'NONE' | 'RESIDENTIAL_PROXY_REQUIRED' | 'UNDER_MAINTENANCE', nullable — A warning displayed on the Actor's page in Apify Store and Console. Can be set by the Actor's developer or automatically by Apify's quality checks.
      - `pictureUrl` string, uri, nullable
      - `userPictureUrl` string, uri, nullable
      - `url` string, uri, nullable
      - `stats` ActorStats, required — Usage statistics and Apify Store metrics for the Actor.
        - `totalBuilds` integer — The total number of builds of the Actor.
        - `totalRuns` integer — The total number of runs of the Actor.
        - `totalUsers` integer — The total number of Actor users, including its owner.
        - `totalUsers7Days` integer — The number of active users of the Actor in the last 7 days.
        - `totalUsers30Days` integer — The number of active users of the Actor in the last 30 days.
        - `totalUsers90Days` integer — The number of active users of the Actor in the last 90 days.
        - `totalMetamorphs` integer — The total number of times a run of another Actor was [metamorphed](https://docs.apify.com/platform/actors/development/programming-interface/metamorph) into this Actor.
        - `lastRunStartedAt` string, date-time — The date and time the most recent run of the Actor started.
        - `actorReviewCount` integer — The number of reviews the Actor has received in Apify Store.
        - `actorReviewRating` number — The average rating of the Actor in Apify Store.
        - `bookmarkCount` integer — The number of users who bookmarked the Actor in Apify Store.
        - `publicActorRunStats30Days` object — Run status counts from the last 30 days. Only for public Actors. Excludes runs started by the Actor's owner.
          - `ABORTED` integer — The number of runs that were aborted.
          - `FAILED` integer — The number of runs that failed.
          - `SUCCEEDED` integer — The number of runs that succeeded.
          - `TIMED-OUT` integer — The number of runs that timed out.
          - `TOTAL` integer — The total number of runs.
      - `currentPricingInfo` CurrentPricingInfo
        - `pricingModel` string, required
        - `apifyMarginPercentage` number
        - `createdAt` string, date-time
        - `startedAt` string, date-time
        - `notifiedAboutChangeAt` string, date-time, nullable
        - `notifiedAboutFutureChangeAt` string, date-time, nullable
        - `isPriceChangeNotificationSuppressed` boolean
        - `forceContainsSignificantPriceChange` boolean
        - `isPPEPlatformUsagePaidByUser` boolean
        - `reasonForChange` string, nullable
        - `trialMinutes` integer, nullable
        - `unitName` string, nullable
        - `pricePerUnitUsd` number, nullable
        - `minimalMaxTotalChargeUsd` number, nullable
        - `pricingPerEvent` object, nullable — Per-event pricing configuration for pay-per-event Actors.
      - `isWhiteListedForAgenticPayments` boolean, nullable — Whether the Actor is whitelisted for agentic payment processing.
      - `actorReviewCount` integer
      - `actorReviewRating` number
      - `bookmarkCount` integer
      - `badge` string, nullable
      - `readmeSummary` string — A brief, LLM-generated readme summary

## Other responses

- `400` — Bad request - invalid input parameters or request body.
- `401` — Unauthorized - authentication required or invalid token.
- `405` — Method not allowed.
- `429` — Too many requests - rate limit exceeded.

---

[API](https://skmtc.net/apify/apis/apify-api.md) · [All operations](https://skmtc.net/apify/apis/apify-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/apify/apify-api/versions/01a71794279b/schema)
