cURL
curl --request GET \ --url https://app.famulor.de/api/user/me \ --header 'Authorization: Bearer <token>'
{ "name": "Your Name", "email": "[email protected]", "total_balance": 100.67447094 }
Ruft die Informationen des authentifizierten Benutzers ab
curl -X GET "https://app.famulor.de/api/user/me" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
Was this page helpful?