Public
Documentation Settings

ImageTranslate

Basic API calls to create project and retrieve results.

You will need to generate an API Key using the ImageTranslate dashboard (https://www.imagetranslate.com/user/account) to start using the APIs.

This API Key has to be passed in the headers for all requests.

POSTCreate Project

https://www.imagetranslate.com/api/create

Creates project and returns an ID if successful

HEADERS
api-key
Content-Type

application/json

Bodyraw
{
    "source_language": "language ISO code",
    "target_languages": "comma separated language ISO codes",
    "image_urls": ["url-to-image-asset-1", "url-to-image-asset-2"],
    "title": "optional title"
}

GETGet Project

https://www.imagetranslate.com/api/get/PROJECT-ID

Retrieve results of a project that has been created.

To save the image file, you can wget the export_url.

wget -O image.png export_url

HEADERS
api-key

DELETEDelete Project

https://www.imagetranslate.com/api/delete/PROJECT-ID

Delete an existing project

HEADERS
api-key

PUThttps://admin-api.stage.portfolioiq.co/api/v1/configurations

https://admin-api.stage.portfolioiq.co/api/v1/configurations

Generated from cURL: curl --location --request PUT 'https://admin-api.stage.portfolioiq.co/api/v1/configurations'
--header 'Content-Type: application/json'
--header 'cookie: _dev_session=HvFpy3Ok1e%2BKGAYwVR6XwdsDujF9zSei9iTaKGfzQhIcQ3x7NjsGpsL%2BOcax%2BvDeTvHXG0VCxoUydhHYRL8NNjvFhbO%2Bi11VCAEc6LAe2Q%2F3CdshxWoNK%2FeRYfHxgJxZr6jHMzreMH%2FWhCg8Gh6HnPgIHkzEVVUGe3PxBcmuUPiWBUHICEHHmBEC4%2F8ramj1mgAuas8hRn3A7jI2jbcdxKTzXLuEYHWEHGepiQolxWg%3D--lmKSt%2Fs5EnSuqYei--VT4jZt%2FnGjpvLI9M09M7dw%3D%3D; path=/; httponly; samesite=none; secure'
--data '{ "organization_uid": "1dddbc52-0e30-45a5-b62b-361fd6def779", "configs": [

Plain Text
{
        "slug": "feature_flag",
        "feature": "excel",
        "value": {
            "visibility": "disabled"
        }
    }
]

}'

HEADERS
Content-Type

application/json

cookie

_dev_session=HvFpy3Ok1e%2BKGAYwVR6XwdsDujF9zSei9iTaKGfzQhIcQ3x7NjsGpsL%2BOcax%2BvDeTvHXG0VCxoUydhHYRL8NNjvFhbO%2Bi11VCAEc6LAe2Q%2F3CdshxWoNK%2FeRYfHxgJxZr6jHMzreMH%2FWhCg8Gh6HnPgIHkzEVVUGe3PxBcmuUPiWBUHICEHHmBEC4%2F8ramj1mgAuas8hRn3A7jI2jbcdxKTzXLuEYHWEHGepiQolxWg%3D--lmKSt%2Fs5EnSuqYei--VT4jZt%2FnGjpvLI9M09M7dw%3D%3D; path=/; httponly; samesite=none; secure

Bodyraw (json)
json
{
    "organization_uid": "1dddbc52-0e30-45a5-b62b-361fd6def779",
    "configs": [
        
        {
            "slug": "feature_flag",
            "feature": "excel",
            "value": {
                "visibility": "disabled"
            }
        }
    ]

}
Loading