Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions sources/platform/integrations/ai/x402.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ When using the API, replace the `/` in the Actor name with `~` (for example, `ap
:::

```bash
# Discover Actors approved for agentic payments
curl -s "https://api.apify.com/v2/store?allowsAgenticUsers=true"
# Discover Actors in the store
curl -s "https://api.apify.com/v2/store"

# Narrow the results with a search term
curl -s "https://api.apify.com/v2/store?allowsAgenticUsers=true&search=instagram&limit=5"
curl -s "https://api.apify.com/v2/store?search=instagram&limit=5"

# Run an Actor and get its dataset items in one call
curl -s -X POST \
Expand Down Expand Up @@ -139,12 +139,6 @@ Not all Actors in Apify Store can be run using agentic payments. To be eligible,
- Run with [limited permissions](/platform/actors/development/permissions). Actors that request full permissions are excluded.
- Not use [Standby](/platform/actors/running/standby) mode for now. Standby support is coming later.

Apify maintains a curated list of Actors approved for agentic payments. To check if an Actor supports agentic payments, use the `allowsAgenticUsers=true` query parameter when [searching the store via API](https://docs.apify.com/api/v2#/reference/store/store-actors-collection/get-list-of-actors-in-store).

```text
https://api.apify.com/v2/store?allowsAgenticUsers=true
```

## Token pricing and limits

- Minimum transaction: $1 in USDC.
Expand Down
Loading