API Documentation
  • Welcome!
  • Quick Start
  • API methods
  • Easy integration
  • Handling Large File Sets
  • Supported formats
  • Webhooks
  • Common usecases
    • Auto enhance image quality
    • Create business photo or avatar from face image
    • Face swap
    • Create beautiful product photo
    • Genarate image in high resolution
    • Remove background
    • AI Drawing to Image - Doodle
    • Real estate
    • Enhancing documents
    • Car dealer photo
  • Image processing
    • Resize and padding
    • Denoise and sharpen
    • Enhance lighting and colors
    • Enhance face details
    • Background removal and generation
    • Image generation
    • Inpainting and outpainting (uncrop)
    • Frame identification
    • Print
    • Captions
    • Additional parameters
    • Presets
  • Account & settings
    • Account information
  • storages
    • Description
    • AWS S3
    • AWS S3 IAM Configuration
  • Presets
    • E-commerce
    • Real-estate
    • Print/Photo
    • Digital Art
  • Technology
    • Algorithms
    • Upscale
    • Background removal
      • Remove BG recommendation
    • Sharpen & Noise reduction
    • Enhance Lighting
  • FAQ
Powered by GitBook
On this page
  1. Account & settings

Account information

Credit balance, username, email, address, etc.

PreviousPresetsNextDescription

Last updated 8 months ago

User's account information can be retrieved using 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
    }
}
#rest_api-me