Skip to main content
POST
/
apify
/
actors
fy/actors
curl --request POST \
  --url https://api.anysite.io/apify/actors \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "actor": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "username": "<string>",
    "alias": "<string>",
    "web_url": "<string>",
    "@type": "@apify_actor",
    "user_id": "<string>",
    "title": "<string>",
    "description": "<string>",
    "readme_summary": "<string>",
    "image": "<string>",
    "categories": [],
    "version": "<string>",
    "notice": "<string>",
    "is_public": false,
    "is_deprecated": false,
    "created_at": "<string>",
    "modified_at": "<string>",
    "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
actor
string
required

Actor as 'username/actor-name', an actor ID, or an Apify Store URL

Minimum string length: 1
Examples:

"apify/instagram-scraper"

"moJRLRc85AitArpNN"

"https://apify.com/apify/web-scraper"

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_actor
user_id
string | null
title
string | null
description
string | null
readme_summary
string | null
image
string | null
categories
string[]
version
string | null
notice
string | null
is_public
boolean
default:false
is_deprecated
boolean
default:false
created_at
string | null
modified_at
string | null
stats
ApifyActorStats · object
pricing
ApifyActorPricing · object