Apify · Schema

Actor

An Apify Actor for web scraping and automation.

ActorsBrowser AutomationCrawlingData AggregationData ExtractionWeb AutomationWeb Scraping

Properties

Name Type Description
id string Actor ID.
name string Actor name.
username string Owner username.
title string Display title.
description string Actor description.
View JSON Schema on GitHub

JSON Schema

apify-actor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apify/refs/heads/main/json-schema/apify-actor-schema.json",
  "title": "Actor",
  "description": "An Apify Actor for web scraping and automation.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Actor ID.",
      "example": "mTD6bTz2HCjSQHeBn"
    },
    "name": {
      "type": "string",
      "description": "Actor name.",
      "example": "web-scraper"
    },
    "username": {
      "type": "string",
      "description": "Owner username.",
      "example": "apify"
    },
    "title": {
      "type": "string",
      "description": "Display title.",
      "example": "Web Scraper"
    },
    "description": {
      "type": "string",
      "description": "Actor description."
    }
  }
}