Аутентификация запросов
import requests
response = requests.request("method",
"api_endpoint_here",
headers={
"Authorization: aml_authorization_api_key"
})# With shell, you can just pass the correct header with each request
curl "api_endpoint_here" \
-H "Authorization: aml_authorization_api_key"Last updated