Authentication

Get current user

Verify the validity of your API key and retrieve basic account information including email and subscription plan.

get/uploadposts/me

Response

API key is valid.

successboolean
messagestring
emailstring email
planstring

Example response

{
  "success": true,
  "message": "Token is valid",
  "email": "user@example.com",
  "plan": "Professional"
}

Changes