-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsaasify.json
58 lines (58 loc) · 1.23 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
56
57
58
{
"name": "zestful-demo",
"openapi": "./zestful.openapi.json",
"services": [
{
"path": "/parseIngredients",
"immutable": true,
"examples": [
{
"name": "Basic",
"input": {
"ingredients": ["2 1/2 tablespoons finely chopped parsley"]
}
}
]
}
],
"pricingPlans": [
{
"name": "Trial",
"amount": 0,
"rateLimit": {
"requestsInterval": "1d",
"requestsMaxPerInterval": 30
}
},
{
"name": "Pro",
"amount": 0,
"rateLimit": null,
"requests": {
"amount": 2
}
}
],
"saas": {
"name": "Zestful API",
"heading": "**Parse Recipe Ingredients**",
"subheading": "An elegant API to turn plain recipe strings into beautiful, structured JSON.",
"repo": "https://github.com/saasify-sh/zestful",
"logo": "./media/logo.png",
"favicon": "./media/favicon.ico",
"theme": {
"name": "waves",
"backgroundImage": "./media/bg.jpg",
"buttonStyle": "rounded",
"color": "#ff6e6c",
"wave": false,
"gradientDark": false,
"codeBlockDark": true
},
"sections": {
"navHeader": {
"displayName": false
}
}
}
}