{
  "openapi": "3.0.1",
  "info": {
    "title": "Internshala Scraper — Internships & Fresher Jobs",
    "description": "Scrape Internshala internships and fresher jobs by keyword, city, category, or start URLs — an Internshala API alternative. Export title, company, stipend or salary (INR), skills, duration, PPO flags, and apply URLs as JSON for campus hiring and recruiting.",
    "version": "1.0",
    "x-build-id": "EgxfWa1Vi47bNlPLY"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/crawloop~internshala-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-crawloop-internshala-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/crawloop~internshala-scraper/runs": {
      "post": {
        "operationId": "runs-sync-crawloop-internshala-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/crawloop~internshala-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-crawloop-internshala-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",
        "properties": {
          "listingType": {
            "title": "What to scrape",
            "enum": [
              "internships",
              "jobs",
              "fresher_jobs",
              "internships_and_jobs"
            ],
            "type": "string",
            "description": "Internshala board. internships_and_jobs runs internships then jobs and merges unique listing IDs.",
            "default": "internships"
          },
          "position": {
            "title": "Keyword / role",
            "type": "string",
            "description": "Free-text search (e.g. python, digital marketing, content writing). Leave blank to browse by city/category/filters only."
          },
          "searchKeywords": {
            "title": "Extra keywords",
            "type": "array",
            "description": "Optional extra keyword queries. Each keyword is searched separately; results are merged and deduplicated by listing ID.",
            "items": {
              "type": "string"
            }
          },
          "category": {
            "title": "Category / profile",
            "type": "string",
            "description": "Internshala profile slug or name (e.g. computer-science, digital-marketing, content-writing, web-development). Used when keyword is empty."
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Indian city (e.g. Bangalore, Mumbai, Delhi, Hyderabad, Pune, Chennai). Comma-separated cities become separate searches. Ignored when work-from-home is on and you are not also passing startUrls."
          },
          "locations": {
            "title": "Extra locations",
            "type": "array",
            "description": "Optional extra cities. Each city is a separate Internshala search; results are pooled and deduplicated.",
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Optional Internshala search or detail URLs. Path filters (keywords, city, WFH, stipend, duration, PPO) are parsed automatically. Search URLs override the filter form.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "workFromHome": {
            "title": "Work from home only",
            "type": "boolean",
            "description": "Only return remote / work-from-home listings (Internshala work_from_home-true filter).",
            "default": false
          },
          "partTime": {
            "title": "Part-time only",
            "type": "boolean",
            "description": "Only return part-time listings.",
            "default": false
          },
          "minStipend": {
            "title": "Min stipend (INR / month)",
            "minimum": 0,
            "type": "integer",
            "description": "Internships only. Internshala stipend floor (typical tiers 2000, 4000, 6000, 8000, 10000). Undisclosed / unpaid listings may still appear if Internshala includes them."
          },
          "minSalary": {
            "title": "Min salary (INR / year)",
            "minimum": 0,
            "type": "integer",
            "description": "Jobs only. Internshala salary floor in annual INR (e.g. 500000 for ₹5 LPA)."
          },
          "durationMaxMonths": {
            "title": "Max duration (months)",
            "minimum": 1,
            "maximum": 36,
            "type": "integer",
            "description": "Internships only. Internshala duration cap (1, 2, 3, 4, 6, 12, …)."
          },
          "withJobOffer": {
            "title": "Internship with job offer (PPO)",
            "type": "boolean",
            "description": "Internships only. Restrict to listings with a pre-placement / job-offer badge.",
            "default": false
          },
          "fastResponse": {
            "title": "Fast response employers",
            "type": "boolean",
            "description": "Internships only. Internshala fast_response filter.",
            "default": false
          },
          "forWomen": {
            "title": "Internships for women",
            "type": "boolean",
            "description": "Use Internshala’s internships-for-women board (internships only).",
            "default": false
          },
          "includeDetails": {
            "title": "Include detail-page fields",
            "type": "boolean",
            "description": "Fetch each listing page for apply-by date, start date, perks, openings, who-can-apply, about-company, and full description. Adds one HTTP request per listing.",
            "default": false
          },
          "maxItems": {
            "title": "Max items",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum listings to collect across all searches. 0 = unlimited (subject to maxPages).",
            "default": 100
          },
          "maxPages": {
            "title": "Max pages per search",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Safety cap on Internshala pagination (~40–50 listings per page).",
            "default": 20
          },
          "monitorMode": {
            "title": "Monitor mode",
            "type": "boolean",
            "description": "On a schedule, push and charge only listing IDs not seen in a previous run. First run delivers the full match set (baseline). Pair with an Apify Schedule and a stable monitorStoreName.",
            "default": false
          },
          "monitorStoreName": {
            "title": "Monitor store name",
            "type": "string",
            "description": "Named Key-Value store for seen listing IDs across scheduled runs. Use a distinct name per watch (e.g. python-bangalore vs marketing-wfh).",
            "default": "internshala-monitor"
          },
          "resetMonitorState": {
            "title": "Reset monitor state",
            "type": "boolean",
            "description": "Clear the seen-listing cache before this run (next run becomes a new baseline).",
            "default": false
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional. Internshala’s AJAX search works over datacenter traffic in testing. Leave proxy off for the cheapest run; add IN residential if you scale up and see blocks.",
            "default": {
              "useApifyProxy": false
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}