服務網站 https://dashboard.scraperapi.com/

串接代碼

{
"openapi": "3.0.0",
"info": {
"title": "ScraperAPI",
"description": "Documentation for the ScraperAPI service",
"version": "1.0.0"
},
"servers": [
{
"url": "[<https://api.scraperapi.com>](<https://api.scraperapi.com/>)"
}
],
"paths": {
"/?api_key={API Key}": {
"get": {
"summary": "Get data from a URL using ScraperAPI",
"operationId": "scrapeURL",
"parameters": [
{
"in": "query",
"name": "url",
"required": true,
"description": "The URL you want to scrape",
"schema": {
"type": "string"
}
}
]
}
}
}
}