Request
import requests

url = "https://api.chakra-ui.com/snippets"
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers, json=data)
print(response.json())
Code Block | Chakra UI Pro