{
  "openapi": "3.0.1",
  "info": {
    "title": "Wantedly Japan Scraper: Startup Jobs Data",
    "description": "Scrape Japanese startup job listings on Wantedly.com. Extract title, company headcount, founder name, applicants, and narrative blocks (mission, culture, duties) directly to Excel or JSON. Drop-in for international recruitment, CRM, and ATS. Only $1.99 per 1,000 results.",
    "version": "1.0",
    "x-build-id": "tFMAHeRMzXcaQEriR"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/getascraper~wantedly-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-getascraper-wantedly-jobs-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/getascraper~wantedly-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-getascraper-wantedly-jobs-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/getascraper~wantedly-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-getascraper-wantedly-jobs-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "scrapeMode",
          "proxyConfiguration"
        ],
        "properties": {
          "scrapeMode": {
            "title": "Scrape Mode",
            "enum": [
              "search",
              "projectUrls",
              "companyUrls"
            ],
            "type": "string",
            "description": "Choose how to discover jobs: walk the listings board, scrape specific project URLs, or pull all jobs from specific companies.",
            "default": "search"
          },
          "occupationTypes": {
            "title": "Occupation Slugs",
            "type": "array",
            "description": "Filter by Wantedly's 53 occupation slugs (e.g. jp__web_engineer, jp__data_scientist, jp__product_manager). Leave empty to crawl all occupations.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "searchQuery": {
            "title": "Search Keyword",
            "type": "string",
            "description": "Free-text keyword (Japanese or English), e.g. 'python', 'AI', 'デザイナー'. Combines with occupation filter via the official site search box.",
            "default": ""
          },
          "region": {
            "title": "Region",
            "enum": [
              "all",
              "tokyo",
              "osaka",
              "nagoya",
              "kyoto",
              "fukuoka",
              "sapporo",
              "remote_jp",
              "kanto",
              "kansai",
              "kyushu_okinawa"
            ],
            "type": "string",
            "description": "Filter by Japanese region. 'all' walks the unfiltered board.",
            "default": "all"
          },
          "companySizeMin": {
            "title": "Company Size Min (employees)",
            "minimum": 0,
            "type": "integer",
            "description": "Filter to companies with at least this many employees (enables a company-page enrichment loop).",
            "default": 0
          },
          "companySizeMax": {
            "title": "Company Size Max (employees)",
            "minimum": 0,
            "type": "integer",
            "description": "Filter to companies with at most this many employees.",
            "default": 10000
          },
          "fundingStages": {
            "title": "Funding Stage Tags",
            "type": "array",
            "description": "Filter by Wantedly '特徴' (attributes) tags. Companies carry tags like 'Funded more than $300,000' or 'Expanding business abroad'.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "workstyles": {
            "title": "Workstyle",
            "type": "array",
            "description": "Filter by parsed workstyle. The Actor infers this from the project body when enabled.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "languageRequirements": {
            "title": "Language Requirements",
            "type": "array",
            "description": "Filter by parsed language requirements. Bilingual roles are the highest-value JP subset.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "postedWithinDays": {
            "title": "Posted Within (days)",
            "minimum": 0,
            "maximum": 365,
            "type": "integer",
            "description": "Freshness filter. Only return jobs posted in the last N days. Use 0 to disable.",
            "default": 0
          },
          "sortBy": {
            "title": "Sort Order",
            "enum": [
              "popular",
              "recent",
              "recommended"
            ],
            "type": "string",
            "description": "Wantedly's official sort options on the search board.",
            "default": "popular"
          },
          "startUrls": {
            "title": "Direct Start URLs",
            "type": "array",
            "description": "Bypass search and scrape specific /projects/{id} or /companies/{slug} URLs. Used when scrapeMode is 'projectUrls' or 'companyUrls'.",
            "default": [],
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "includeJobDetails": {
            "title": "Fetch Job Details (Mission / Culture / Duties)",
            "type": "boolean",
            "description": "Navigate to each project page to capture the three Wantedly narrative blocks (なぜやるのか / どうやっているのか / こんなことやります) and the full JobPosting JSON-LD.",
            "default": true
          },
          "includeCompanyDetails": {
            "title": "Fetch Company Details (Founder / Headcount / Address)",
            "type": "boolean",
            "description": "Navigate to each unique company page to capture founder name, founding date, employee headcount, slogan, headquarters address, and Organization JSON-LD.",
            "default": true
          },
          "outputFormat": {
            "title": "Output Format",
            "enum": [
              "flat",
              "normalized"
            ],
            "type": "string",
            "description": "'flat' = one row per job with company embedded. 'normalized' = two datasets (jobs + companies) with a foreign key, ideal for analysts and ATS pipelines.",
            "default": "flat"
          },
          "maxItems": {
            "title": "Max Items",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum number of job records to extract. Free first 10, then $1.99/1k.",
            "default": 10
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "REQUIRED from Apify cloud. Wantedly blocks datacenter IPs. Use Apify Proxy (Japan residential proxies recommended).",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}