API
Tek bir anahtarla kendi kodunuzdan görsel oluşturun.
API anahtarınızı oluşturmak için giriş yapın.
Giriş yapBir görsel oluşturun
Bir istek gönderin, karşılığında bir görsel alın.
# 1) Send the prompt. The endpoint does not wait for the image:
# it queues the job and answers 202 with an id.
curl https://samimagegenerator.com/api/v1/generate \
-H "Authorization: Bearer sig_your_key_here" \
-H "Content-Type: application/json" \
-d '{"prompt":"a red fox in the snow","style":"realistic","aspect":"1:1","resolution":"1K","count":1,"model":"samimage-mini"}'
# 2) Ask for the result every couple of seconds until status is no longer "pending".
# Generation takes 20-60s. Polling is safe to repeat: it never spends a credit.
curl "https://samimagegenerator.com/api/v1/generate?id=<ID>" \
-H "Authorization: Bearer sig_your_key_here"Yukarıdaki anahtarla gerçek uca gider ve bir kredi harcar — kodunuzun yapacağı çağrının aynısı.
Yanıt
// 1) POST — the job is accepted, nothing is generated yet (202)
{ "ok": true, "id": "…", "status": "pending" }
// 2) GET ?id=… — while the worker is on it (200)
{ "ok": true, "status": "pending" }
// 2) GET ?id=… — finished (200)
{
"ok": true,
"status": "done",
"generations": [
{ "id": "…", "model": "samimage-mini", "url": "https://samimagegenerator.com/api/generations/…/file" }
],
"refunded": 0,
// credits: null on an unlimited plan — there is no number to count down.
"credits": 96
}
// Hatalar
// The job failed: HTTP is still 200 — the poll itself worked, the generation did not.
{ "ok": false, "status": "error", "error": "no-credits" }
// generation-failed / storage-failed: the credit was spent and refunded,
// so the fresh balance comes back with the error.
{ "ok": false, "status": "error", "error": "generation-failed", "credits": 96 }
// Unknown or expired id (404). Jobs are kept for one day.
{ "ok": false, "error": "not-found" }Model
samimage-miniSam Mini1 kredisamimage-maxSam Max1 kredi · Max
Stil
realisticGerçekçianimeAnime3d3DwatercolorSuluboyaoilYağlı boyapixelPiksel sanatıcyberpunkSiberpunkfantasyFantastikminimalSadesketchKarakalemcomicÇizgi romancartoonKarikatürlineartÇizgi sanatılowpolyDüşük poligonisometricİzometrikvaporwaveVaporwavesteampunkSteampunknoirKara filmpopartPop artimpressionistİzlenimcisurrealGerçeküstüneonNeonclayKilpapercutKâğıt kesmeeditDüzenle
Biçim
1:1Kare16:9Geniş9:16Uzun4:3Standart
Boyut
1K1024×10242K2048×2048
Alanlar
promptstring · 5000style25 × string · isteğe bağlıaspect1:1 | 16:9 | 9:16 | 4:3 · isteğe bağlıresolution1K | 2Kcount1-1model2 × stringisPublicbooleanremoveBgbooleanenhancebooleancleanbooleanuseSeedbooleansourceImagedata URI · 8 MBmarkedImagedata URI · 8 MBmaskedbooleanregionsstring[] · 8 × 300langen | de | es | fr | it | nl | pl | sv | tr | pt | hi | id | ko | ja | arreferenceImages(url | data URI)[] · 4 × 8 MB
Hatalar
- 401
unauthorizedAnahtar eksik ya da artık geçerli değil. - 401
browser-keyBu anahtarın izinli site listesi var, yani gömme kodu için. Sunucu çağrıları site listesi boş olan bir anahtar ister. - 429
too-many-requests · 30/60sÇok fazla deneme yapıldı. Lütfen birkaç dakika bekleyin. - 200
no-creditsKrediniz kalmadı. Oluşturmaya devam etmek için abone olun ya da kredi satın alın. - 200
no-promptÖnce ne oluşturmak istediğinizi tarif edin. - 200
not-configuredGörsel oluşturma şu anda kullanılamıyor. - 200
generation-failedBu oluşturma başarısız oldu. Lütfen tekrar deneyin. - 200
image-too-largeBu görsel çok büyük. 8 MB altında bir görsel kullanın. - 200
not-allowedBu hesapta görsel üretimi kapalı. Destekle iletişime geçin. - 200
storage-failedGörsel oluşturuldu ama kaydedilemedi. Bu bizim tarafımızda — destekle iletişime geçin. - 200
no-source-imageÖnce düzenlenecek bir görsel seçin. - 200
busyAynı anda çok fazla istek var. Krediniz yerinde — birazdan tekrar deneyin. - 200
blockedBu komut Kabul Edilebilir Kullanım kurallarımızı çiğniyor ve gönderilmedi. Kredi harcanmadı. - 200
email-unverifiedÜretmeden önce e-posta adresinizi doğrulayın. Yeni bağlantıyı hesap sayfanızdan isteyebilirsiniz.