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's query/topic. description: This endpoint will generate a topical map for user's 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's query/topic where a topical map will be made for. required: - topic ContentResponse: type: string description: A text containing a topical map link.