Skip to content

Get Me

GET https://api.slidespeak.co/api/v1/me
Retrieves the user details associated with the provided API key. Use this endpoint to confirm which user account is linked to the API key being used and the number of API credits remaining.

Headers


Content-Type: string
application/json
X-API-Key: string
The API key to use for the request.
<YOUR_API_KEY>

Code Examples


Terminal window
curl -X GET "https://api.slidespeak.co/api/v1/me" -H "Content-Type: application/json" -H "X-API-Key: YOUR_API_KEY"

Response


{
    "user_name": "john_doe",
    "api_credits": 1000,
    "additional_api_credits": 200
}