GET /me
Return the identity behind the caller's credential.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| GET | /v1/me |
curl "https://api.ellipsis.dev/v1/me" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.me()
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.me();
console.log(result);Request
Response
Example response · 200
{
"api_key_id": "string",
"customer_id": "string",
"customer_login": "string",
"sandbox_id": "string",
"user_id": "string"
}