Build your own AI models easily

Amp up your platform with custom-made and affordable image recognition.

prediction-result

Simple yet powerful training studio

A dark and functional design without bloat.

result
UPLOAD

UPLOAD

Create tags and upload images.

TRAIN

TRAIN

Let Alchemy do its magic.

DEPLOY

DEPLOY

Get predictions via API.

result

Explore ready-made AI models

If you don’t need a niche model, you can use our prebuilt models - just send a request to out API. Our AI engine currently covers: Celebrity AI, Food AI, Skin AI & Design AI. You can test them out live below (no signup required).

Get predictions delivered to your app via fast API

We give you $10 credit for free when you sign up. You can train and use unlimited number of AI models.

terminal

PYTHON

NODE

JAVA

PHP

CURL

import requests

url = "https://api.alchemyai.net/api/v1/deployment/prediction/28b97f47707d429c/" 

payload= { 'api_key' : 'fXX5d7X5450844b698XX5b9XXd3796'  } 
files=[
 ('image',('test.jpg',open('/C:/Users/user/Desktop/test_imgs/test.jpg','rb'),'image/jpeg'))
]
headers = {
 'Authorization': 'Token 036a598231f8Xde3XX9002XXebf345XXX787d654'
}

response = requests.request("POST", url, headers=headers, data=payload, files=files)

print(response.text)
terminal