openapi: 3.0.2 info: title: Prof G Markets Spext description: Chat with the Prof G Markets Podcast on Spext version: 'v1' servers: - url: https://plugin.profgmarkets.spext.com paths: /search: post: operationId: search summary: Search Prof G Markets Podcast on Spext requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/searchRequest' responses: "200": description: Successful Response /search-suggestions: get: operationId: search-suggestions summary: Get list of top items that can be searched responses: "200": description: Successful Response components: schemas: searchRequest: type: object required: - search properties: query: type: string description: Search Prof G Markets Podcast on Spext required: true