-
Notifications
You must be signed in to change notification settings - Fork 0
/
saasify.json
44 lines (44 loc) · 1.25 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
{
"name": "image-size",
"description": "Simple API for detecting image dimensions",
"alias": "image-size",
"services": [
{
"src": "src/sizebyurl.ts",
"examples": [
{
"name": "From URL",
"description": "Get image dimensions from a URL",
"input": {
"url": "https://upload.wikimedia.org/wikipedia/commons/2/23/Close_up_of_a_black_domestic_cat.jpg"
}
}
]
}
],
"amountPerBase": 99,
"amountPerRequest": 0.004,
"amountPerCompute": 0,
"amountPerBandwidth": 0,
"noAuthRateLimit": {
"requests": true,
"requestsInterval": 3600,
"requestsMaxPerInterval": 15
},
"saas": {
"name": "image-size",
"heading": "**Simple image dimension API.**",
"subheading": "An API to get the dimensions of any image via a URL.",
"repo": "https://github.com/saasify-sh/image-size",
"logo": "./media/logo.svg",
"favicon": "./media/favicon.ico",
"theme": {
"name": "waves",
"backgroundImage": "https://images.unsplash.com/photo-1531171673193-06ab3c43e4a5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80",
"buttonStyle": "rounded",
"wave": false,
"codeBlockDark": true,
"color": "#F19436"
}
}
}