Account information

Credit balance, username, email, address, etc.

curl --request POST \
     --url https://deep-image.ai/rest_api/me \
     --header 'content-type: application/json' \
     --header 'x-api-key: API_KEY'

And the example result:

{
    "credits": 3872,
    "username": "John Doe",
    "email": "john.doe@gmail.com",
    "api_key": "xxxx-xxxx-xxxx-xxxx",
    "language": "en",
    "webhooks": {},
    "address": {
        "tax": "277021597",
        "companyName": "test",
        "streetAddress": "test",
        "city": "test",
        "postalCode": "55555",
        "country": "DE",
        "countryName": "Germany",
        "isCompany": true
    }
}

Last updated