--- title: Test language_tabs: - bash - ruby - python toc_footers: - Sign Up for a Developer Key - Documentation Powered by Whiteboard includes: search: true --- # Introduction Welcome to the Kittn API! You can use our API to access Kittn API endpoints, which can get information on various cats, kittens, and breeds in our database. We have language bindings in Shell, Ruby, and Python! You can view code examples in the dark area to the right, and you can switch the programming language of the examples with the tabs in the top right. # Authentication > To authorize, use this code: ```ruby require 'kittn' api = Kittn::APIClient.authorize!('meowmeowmeow') ``` ```python import kittn api = kittn.authorize('meowmeowmeow') ``` ```bash # With shell, you can just pass the correct header with each request curl "api_endpoint_here" -H "Authorization: meowmeowmeow" ```