Skip to main content
POST
/
api
/
apify
/
actors
/
search
/apify/actors/search
curl --request POST \
  --url https://api.anysite.io/api/apify/actors/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "username": "<string>",
    "alias": "<string>",
    "web_url": "<string>",
    "@type": "@apify_search_actor",
    "title": "<string>",
    "description": "<string>",
    "image": "<string>",
    "author_name": "<string>",
    "author_image": "<string>",
    "badge": "<string>",
    "notice": "<string>",
    "categories": [],
    "stats": {
      "@type": "@apify_actor_stats",
      "run_count": 0,
      "user_count": 0,
      "user_count_7_days": 123,
      "user_count_30_days": 123,
      "user_count_90_days": 123,
      "build_count": 123,
      "bookmark_count": 123,
      "review_count": 123,
      "review_rating": 123,
      "last_run_at": "<string>",
      "run_stats_30_days": {
        "@type": "@apify_actor_run_stats",
        "succeeded_count": 0,
        "failed_count": 0,
        "aborted_count": 0,
        "timed_out_count": 0,
        "total_count": 0
      }
    },
    "pricing": {
      "pricing_model": "<string>",
      "@type": "@apify_actor_pricing",
      "price_per_unit_usd": 123,
      "unit_name": "<string>",
      "trial_minutes": 123,
      "minimal_max_total_charge_usd": 123,
      "apify_margin_percentage": 123,
      "started_at": "<string>",
      "created_at": "<string>",
      "events": []
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword for actors

Minimum string length: 1
Examples:

"instagram scraper"

"google maps"

count
integer
required

Max number of actors to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
username
string
required
alias
string
required
web_url
string
required
@type
string
default:@apify_search_actor
title
string | null
description
string | null
image
string | null
author_name
string | null
author_image
string | null
badge
string | null
notice
string | null
categories
string[]
stats
ApifyActorStats · object
pricing
ApifyActorPricing · object