# <h1>Intro to Swagger</h1> --- layout: false .left-column[ # Prep ] .right-column[ ### Download resource files ###- [Resource files](http://hashbytes.com/) ] --- ### Swagger YAML ```yaml swagger: '2.0' info: description: Get text from hash title: Text and Hash version: v1 host: 127.0.0.1:8008 schemes: - https basePath: / paths: /: get: summary: Get text from hash parameters: - in: query name: hash type: string description: 'The hash of the desired text.' responses: '200': description: Success response schema: type: object properties: text: type: string example: This is some text ```