Skip to content
Operation ID: getMe

Get authenticated user

GET
/me

Find yourself they say. That’s what you can do here.

Authorizations

Responses

OK
JSON
{
"id": 0,
"name": "string",
"email": "string"
}

Samples

cURL
curl -X GET https://galaxy.scalar.com/me
JavaScript
fetch("https://galaxy.scalar.com/me")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("https://galaxy.scalar.com/me");
Python
import requests
response = requests.get("https://galaxy.scalar.com/me")
print(response.json())
Powered by VitePress OpenAPI