# Apify Store Actor Search via stableApify

> Apify Store Actor Search via stableApify is a paid API for AI agents from stableapify.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Search and list actors from the Apify Store with full-text search, category filtering, and pagination, accessible via x402 micropayment protocol.

## Facts

- Endpoint: POST https://stableapify.dev/api/actors/list
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apify-store-actor-search-via-stableapify-dace52bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3RXlUcbFbxzD3pSbsooJP

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability apify-store-actor-search-via-stableapify-dace52bb -d '<json body>'
```

Example prompt: Search the Apify Store for actors related to 'LinkedIn scraping' and show me the top 10 results.

## When to prefer this

Choose this endpoint when you need to discover or search for Apify actors programmatically using the x402 micropayment protocol, especially when you want to find the right actor before starting a run, or when browsing the Apify Store catalog by category or owner without maintaining a full Apify subscription.

## Known failure modes

- Payment failure via x402 protocol if USDC balance is insufficient
- Empty result set if search query matches no actors
- Invalid pagination parameters (offset/limit out of range) returning an error
- Rate limiting or API unavailability on Apify's backend
- Malformed search query exceeding 200 character limit

## How this service works

Search Apify Store actors, start actor runs, and fetch results over x402 and MPP.

## Output

Returns a paginated list of Apify Store actors matching the search criteria, including metadata such as actor name, owner username, description, and other relevant actor details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 20,
   "maximum": 100,
   "minimum": 1,
   "description": "Maximum actors to return."
  },
  "offset": {
   "type": "integer",
   "default": 0,
   "maximum": 9007199254740991,
   "minimum": 0,
   "description": "Pagination offset."
  },
  "search": {
   "type": "string",
   "maxLength": 200,
   "minLength": 1,
   "description": "Full-text search query for Apify Store actors."
  },
  "category": {
   "type": "string",
   "maxLength": 100,
   "minLength": 1
  },
  "username": {
   "type": "string",
   "maxLength": 100,
   "minLength": 1,
   "description": "Actor owner username for exact actor lookup."
  },
  "actorName": {
   "type": "string",
   "maxLength": 100,
   "minLength": 1,
   "description": "Actor name for exact actor lookup with username."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apify-store-actor-search-via-stableapify-dace52bb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableapify.dev](https://www.zero.xyz/host/stableapify.dev/llms.txt)
