### Get Specific Lumen Notice by ID Source: https://github.com/qut-dmrc/lumenapi/blob/master/README.md Retrieve a particular notice from the Lumen database using its unique ID. The ID is provided as a string. ```python # Get a particular notice by ID: notice = '14457992' # '12853850' result = lumen.get(notice) ``` -------------------------------- ### Initialize Lumen API Client Source: https://github.com/qut-dmrc/lumenapi/blob/master/README.md Initialize the API client with your Lumen API key. This is the first step before making any requests. ```python from lumen import Lumen # Initialise API client with your API key lumen = Lumen(api_key='YOUR_API_KEY') ``` -------------------------------- ### Search Lumen Notices Source: https://github.com/qut-dmrc/lumenapi/blob/master/README.md Construct a dictionary of search terms and use it to search the Lumen database. Results are returned as a dictionary. ```python # Construct a dictionary of search terms; e.g.: search_dict = {'recipient_name': 'youtube', 'per_page': 100, 'sort_by': 'date_received desc'} # Search and return JSON results as a dictionary results = lumen.search(search_dict) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.