This commit is contained in:
ct
2025-08-10 21:10:33 +08:00
parent 480bd9055d
commit 583a804073
43 changed files with 7623 additions and 270 deletions

View File

@@ -0,0 +1,19 @@
meta {
name: Get Crawl Status - Results
type: http
seq: 2
}
get {
url: {{base_url}}/api/crawl/:uuid
body: none
auth: bearer
}
headers {
Accept: application/json
}
auth:bearer {
token: {{api_token}}
}

View File

@@ -0,0 +1,32 @@
meta {
name: Initiate Crawl Job
type: http
seq: 1
}
post {
url: {{base_url}}/api/crawl
body: json
auth: bearer
}
headers {
Accept: application/json
Content-Type: application/json
}
auth:bearer {
token: {{api_token}}
}
body:json {
{
"url": "https://example.com",
"timeout": 30,
"delay": 2000,
"block_ads": true,
"block_cookie_banners": true,
"block_trackers": true,
"wait_until_network_idle": true
}
}

View File

@@ -0,0 +1,19 @@
meta {
name: List Crawl Jobs
type: http
seq: 3
}
get {
url: {{base_url}}/api/crawl
body: none
auth: bearer
}
headers {
Accept: application/json
}
auth:bearer {
token: {{api_token}}
}