-
Notifications
You must be signed in to change notification settings - Fork 16
/
keyword-explorer.maila.ai.yaml
75 lines (75 loc) · 2.43 KB
/
keyword-explorer.maila.ai.yaml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
openapi: 3.0.3
info:
title: Keyword Explorer
description: Keyword Explorer is a keyword research tool that helps you discover relevant and popular keywords for your product or content, enhancing SEO and content relevancy by providing top related keywords.
version: 1.0.0
contact:
email: kevin@maila.ai
servers:
- url: https://keyword-explorer.maila.ai
paths:
/related-keywords:
get:
operationId: getRelatedKeywords
summary: Get related keywords
description: Give a keyword and get a list of related keywords.
parameters:
- name: keyword
in: query
description: The main keyword to find related keywords for.
required: true
schema:
type: string
example: SEO
responses:
"200":
description: Successful operation
content:
application/json:
schema:
type: object
properties:
keywords:
type: array
items:
type: string
example:
keywords:
[
"seo marketing",
"seo optimization",
"how to do seo for website step by step",
"google seo tool",
"seo online marketing",
"what does an seo do",
"seo website",
"google free seo tools",
"how to get seo",
"what is seo for beginners",
"what is seo in digital marketing",
"what is seo services",
]
"400":
description: Bad request
content:
application/json:
schema:
type: object
properties:
error:
type: string
description: Error message
example:
error: No keyword provided
"default":
description: Error fetching related keywords
content:
application/json:
schema:
type: object
properties:
error:
type: string
description: Error message
example:
error: Error fetching related keywords