-
Notifications
You must be signed in to change notification settings - Fork 6
/
saasify.json
55 lines (55 loc) · 1.46 KB
/
saasify.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "scrape-it",
"services": [
{
"src": "scrape.ts",
"examples": [
{
"name": "Scrape a URL",
"description": "Scrape Hacker News",
"input": {
"url": "https://news.ycombinator.com",
"opts": {
"posts": {
"listItem": ".athing",
"data": {
"title": ".storylink",
"href": {
"selector": ".storylink",
"attr": "href"
}
}
}
}
}
}
]
}
],
"alias": "scrape-it",
"amountPerBase": 99,
"amountPerRequest": 0.01,
"amountPerCompute": 0,
"amountPerBandwidth": 0,
"noAuthRateLimit": {
"requests": true,
"requestsInterval": 3600,
"requestsMaxPerInterval": 10
},
"saas": {
"name": "scrape-it",
"heading": "**A web scraping API for humans**",
"subheading": "A hassle-free API that lets you scrape web pages with zero dependencies. Try free, then 1¢ per 100 scrapes.",
"repo": "https://github.com/saasify-sh/scrape-it",
"logo": "./media/logo.svg",
"favicon": "./media/favicon.ico",
"theme": {
"name": "waves",
"backgroundImage": "https://images.unsplash.com/photo-1544207916-df3b3a131e35?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80",
"wave": false,
"codeBlockDark": true,
"gradientDark": true,
"color": "#784C96"
}
}
}