-
Notifications
You must be signed in to change notification settings - Fork 16
/
webfx.ai.yaml
36 lines (36 loc) · 986 Bytes
/
webfx.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
openapi: 3.0.1
info:
title: SEO Assistant
description: The SEO Assistant can generate search engine keyword information in order to aid the creation of content.
version: 'v1'
servers:
- url: https://webfx.ai
paths:
/suggestions.php:
get:
operationId: getGeneratedKeywordSuggestion
summary: Get the list of keyword suggestions
parameters:
- in: query
name: keyword
schema:
type: string
required: true
description: Phrase or sentence entered by user.
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/getGeneratedKeywordSuggestionResponse'
components:
schemas:
getGeneratedKeywordSuggestionResponse:
type: object
properties:
suggestions:
type: array
items:
type: string
description: The list of keyword suggestions.