Topical Authority

Vand ID: vand-b047da3c-ab7d-48d5-8eb4-60e202810fa0

Learn how to easily use the Topical Authority tool with the OpenAI API.

AISEO topical authority tool will generate the topical authority for any topic and helps you dominate your niche.

OpenAI function calls:

{
  "name": "topicalAuthority",
  "description": "This endpoint will generate a topical map for user\u0027s query/topic.",
  "parameters": {
    "type": "object",
    "properties": {
      "topic": {
        "type": "string",
        "description": "User\u0027s query/topic where a topical map will be made for."
      }
    },
    "required": [
      "topic"
    ]
  }
}

Auth Type

none

Servers

https://topical-authority-qiabyuewca-uc.a.run.app

OpenAPI:

{
  "openapi": "3.0.1",
  "info": {
    "title": "Topical Authority",
    "description": "AISEO topical authority tool will generate the topical authority for any topic and helps you dominate your niche.",
    "version": "v1"
  },
  "servers": [
    {
      "url": "https://topical-authority-qiabyuewca-uc.a.run.app"
    }
  ],
  "paths": {
    "/topical": {
      "post": {
        "operationId": "topicalAuthority",
        "summary": "This endpoint will generate a topical map for user\u0027s query/topic.",
        "description": "This endpoint will generate a topical map for user\u0027s query/topic.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Data"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Content Generation Successful",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ContentResponse"
                }
              }
            }
          },
          "400": {
            "description": "Invalid input."
          },
          "500": {
            "description": "Internal server error."
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Data": {
        "type": "object",
        "properties": {
          "topic": {
            "type": "string",
            "description": "User\u0027s query/topic where a topical map will be made for."
          }
        },
        "required": [
          "topic"
        ]
      },
      "ContentResponse": {
        "type": "string",
        "description": "A text containing a topical map link."
      }
    }
  }
}