# Getting Started with the Museum API ## Introduction The Museum API provides access to museum collections, exhibitions, and related information. This guide will help you get started with using the API. ## Authentication To use the Museum API, you'll need an API key. Include it in the header of your requests: ``` Authorization: Bearer YOUR_API_KEY ``` ## Base URL All API requests should be made to: ``` https://api.museum.com/v1 ``` ## Example Requests ### Get All Artworks ``` GET /artworks ``` ### Get Artwork by ID ``` GET /artworks/{id} ``` ### Search Artworks ``` GET /artworks/search?query=monet ``` ## Response Format All responses are returned in JSON format. ## Rate Limiting The API is limited to 100 requests per minute per API key. ## Need Help? If you have any questions or need assistance, please contact our support team at api-support@museum.com.