Um exemplo em Python é: import requests url = "https://eagenda.com.br/api/v3/users/" headers = { "accept": "application/json", "Authorization": "Bearer ", "Content-Type": "application/json" } data = { "full_name": "João Silva", "email": "joao.silva@example.com", "password": "senha123", "accounts": [ { "profile_type": "oper", "is_active": True, "account_slug": "minha-conta" } ] } response = requests.post(url, json=data, headers=headers) print(response.status_code) print(response.json())