cURL
curl "https://app.tatango.com/api/v2/accounts/me" -X GET \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -u [email protected]:my_api_key \ -H "Host: example.org" \ -H "Cookie: "
{ "status": "OK", "account": { "id": 37, "email": "[email protected]", "username": "boowebb36" } }
This endpoint retrieves the current account, as specified by the API key used to authenticate.
GET https://app.tatango.com/api/v2/accounts/me
Tatango authenticates API requests by validating an API key passed via HTTP Basic Authentication. Use your login email as the username and your API key as the password.
Successful response
"OK"
Show child attributes
37
"[email protected]"
"boowebb36"
Was this page helpful?