Account

GET /v1/account

Check your account status and credits left at any time. It will respond with your personal details and the current usage levels. Usage resets at the start of every month.

JavaScript Example

fetch(
"https://api.screenshots.so/v1/account",
{
headers: {
"Authorization": "Bearer API_KEY"
}
}
)

Sample Response

{
"success": true,
"user": {
"_id": "c50b30b01268516f456f9613",
"firstname": "Jim",
"lastname": "Raptis",
"email": "jim@screenshots.so",
"tier": "business",
"credits": 100000,
"apiKey": "8ae1211bc6df44da87496189a1ade0c6",
"createdAt": "2022-04-13T11:24:53.465Z"
}
}