To authenticate your requests, include your auth_token in the Authorization header. Here’s how you can do it:
auth_token
Authorization
headers = { "Authorization": f"Token {auth_token}", ... }
Ensure you prepend Token to your auth_token for proper authorization.
Token