For the complete documentation index, see llms.txt. This page is also available as Markdown.

Account information

Credit balance, username, email, address, etc.

User's account information can be retrieved using API methods method:

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