openapi: 3.0.2 info: title: GaryVee by Spext description: GaryVee Keynote Speeches Video & Podcast Search in Spext version: 'v1' servers: - url: https://plugin.garyveekeynotespeeches.spext.com paths: /search: post: operationId: search summary: Search from spext of GaryVee Keynote Speeches videos 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 from spext of GaryVee Keynote Speeches videos required: true