import requests
    
    headers = {
        'Authorization': 'Bearer YOUR_API_TOKEN'
    }
    
    params = {
        'catId': undefined,
        'channel': '',
        'format': 'TLE'
    }
    
    response = requests.get('https://spacemapper.cn/cgi/orbital/aoe/list',
    headers=headers, params=params)
    
    print(response.text)