SamImageGenerator
Giriş yap

API

Tek bir anahtarla kendi kodunuzdan görsel oluşturun.

API anahtarınızı oluşturmak için giriş yapın.

Giriş yap

Bir 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 kredi
  • samimage-maxSam Max1 kredi · Max

Stil

  • realisticGerçekçi
  • animeAnime
  • 3d3D
  • watercolorSuluboya
  • oilYağlı boya
  • pixelPiksel sanatı
  • cyberpunkSiberpunk
  • fantasyFantastik
  • minimalSade
  • sketchKarakalem
  • comicÇizgi roman
  • cartoonKarikatür
  • lineartÇizgi sanatı
  • lowpolyDüşük poligon
  • isometricİzometrik
  • vaporwaveVaporwave
  • steampunkSteampunk
  • noirKara film
  • popartPop art
  • impressionistİzlenimci
  • surrealGerçeküstü
  • neonNeon
  • clayKil
  • papercutKâğıt kesme
  • editDüzenle

Biçim

  • 1:1Kare
  • 16:9Geniş
  • 9:16Uzun
  • 4:3Standart

Boyut

  • 1K1024×1024
  • 2K2048×2048

Alanlar

  • promptstring · 5000
  • style25 × string · isteğe bağlı
  • aspect1:1 | 16:9 | 9:16 | 4:3 · isteğe bağlı
  • resolution1K | 2K
  • count1-1
  • model2 × string
  • isPublicboolean
  • removeBgboolean
  • enhanceboolean
  • cleanboolean
  • useSeedboolean
  • sourceImagedata URI · 8 MB
  • markedImagedata URI · 8 MB
  • maskedboolean
  • regionsstring[] · 8 × 300
  • langen | de | es | fr | it | nl | pl | sv | tr | pt | hi | id | ko | ja | ar
  • referenceImages(url | data URI)[] · 4 × 8 MB

Hatalar

  • 401unauthorizedAnahtar eksik ya da artık geçerli değil.
  • 401browser-keyBu anahtarın izinli site listesi var, yani gömme kodu için. Sunucu çağrıları site listesi boş olan bir anahtar ister.
  • 429too-many-requests · 30/60sÇok fazla deneme yapıldı. Lütfen birkaç dakika bekleyin.
  • 200no-creditsKrediniz kalmadı. Oluşturmaya devam etmek için abone olun ya da kredi satın alın.
  • 200no-promptÖnce ne oluşturmak istediğinizi tarif edin.
  • 200not-configuredGörsel oluşturma şu anda kullanılamıyor.
  • 200generation-failedBu oluşturma başarısız oldu. Lütfen tekrar deneyin.
  • 200image-too-largeBu görsel çok büyük. 8 MB altında bir görsel kullanın.
  • 200not-allowedBu hesapta görsel üretimi kapalı. Destekle iletişime geçin.
  • 200storage-failedGörsel oluşturuldu ama kaydedilemedi. Bu bizim tarafımızda — destekle iletişime geçin.
  • 200no-source-imageÖnce düzenlenecek bir görsel seçin.
  • 200busyAynı anda çok fazla istek var. Krediniz yerinde — birazdan tekrar deneyin.
  • 200blockedBu komut Kabul Edilebilir Kullanım kurallarımızı çiğniyor ve gönderilmedi. Kredi harcanmadı.
  • 200email-unverifiedÜretmeden önce e-posta adresinizi doğrulayın. Yeni bağlantıyı hesap sayfanızdan isteyebilirsiniz.