Quickstart

Get your first result in three steps.

1. Create an account & get credits

Sign up — new accounts get 10 free credits. Buy more anytime on the billing page. Each tools costs 1 credit.

2. Create an API key

Go to API keys and create one. The key (ut_live_) is shown once — store it safely.

3. Send your first request

Upload a file as multipart form data:

curl -X POST https://usely.tools/api/v1 \
  -H "Authorization: Bearer ut_live_YOUR_KEY" \
  -F "image_file=@photo.jpg" \
  -o tools.png

You can also pass a URL or base64 instead of a file:

curl -X POST https://usely.tools/api/v1 \
  -H "Authorization: Bearer ut_live_YOUR_KEY" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{ "image_url": "https://example.com/photo.jpg", "format": "png" }'

That’s it. Read the API reference for all parameters and output options.