· via dev.to (home feed)
Picverse AI opens public API for image editing tools and generation models
Picverse AI has launched a public API that exposes its image editing tools and 26 generation models to external backends, using server-side keys, async jobs and a credit balance shared with the website.

What shipped
Picverse AI, the team behind a bilingual (English and Spanish) image studio on the web, has released a public API, version 1.0.0, that opens its image editing tools and text-to-image generation models to outside backends. According to the announcement post on dev.to, the service is hosted at api.picverse.com and ships with both a machine-readable OpenAPI contract and human-readable documentation, with API keys created from an account dashboard.
The post says the surface was shaped by four recurring partner requests: keys that stay on the server instead of living in browser JavaScript, asynchronous jobs so a slow model cannot trip a caller's HTTP timeout, one credit balance shared between the website and the API, and discoverable catalogs describing every tool and model.
Authentication, plans and credits
Authentication uses bearer keys with pk_live_ or pk_test_ prefixes. Keys are deliberately server-side: the gateway sends no CORS headers, so a key embedded in frontend JavaScript will not function from a browser page. An account can hold up to 10 active keys, and revoked keys remain in history so older job records stay interpretable.
Access is gated behind paid usage. The post states that creating keys or calling authenticated routes requires an active Basic, Standard or Premium plan, or a purchased credit pack; a free account alone receives a 403 error with a plan-upgrade code.
Processing follows a create-then-poll pattern. A POST to the jobs endpoint, which supports an idempotency key header, returns a job identifier immediately, and clients poll the job until it reaches a succeeded or failed state. Credits are held when a job begins and reconciled once it completes. A dedicated account endpoint reports the credit breakdown across subscription, purchased and reserved amounts, together with rate-limit standing; the sample response in the post shows a limit of 60 requests per reset window. An unauthenticated health endpoint is available for liveness checks.
Two catalogs, uneven readiness
The API splits capabilities into two catalogs. Tool jobs edit an image the caller supplies, typically an image URL plus options; model jobs generate an image from a prompt with parameters such as resolution and aspect ratio. Public identifiers are stable Picverse names, and the post says upstream provider slugs are never exposed, so a model can be swapped out without breaking customer integrations.
The tools catalog lists 17 entries, spanning enhancement, upscaling, sharpening, restoration, colorization, photo-to-anime, cartoon and sketch conversions, background, object and watermark removal, plus hairstyle and outfit changers. However, only three are executable today: the background remover, image enhancer and image upscaler. According to the post, other tool identifiers return an explicit error saying the tool is listed but not yet runnable, pending expansion of an internal allow-list.
The models catalog is broader, listing 26 generation models with credit bands by resolution, supported ratios, reference-image rules and variation caps. Named identifiers include Nano Banana 2, GPT Image 2, entries across the Seedream, Qwen Image, Flux and Imagen families, Ideogram 3, Recraft V3, two Stable Diffusion 3.5 variants and xAI's Grok Imagine. Costs vary: the post cites 2 credits for enhancement and background removal, 6 for the pro enhancer, and 2, 3 or 6 for upscaling depending on scale, and it advises reading prices from the live catalog rather than hardcoding them.
Why it matters
The release turns Picverse from a consumer-facing studio into a potential building block for other services, offering a single HTTP surface over many image models and editing operations without per-provider integrations. The design choices — no CORS, async jobs, idempotency keys, stable identifiers and a credit pool shared with the website — signal it is aimed squarely at server-side product integration rather than browser apps.
The caveats are real, though. The gap between the 17-item tool catalog and the three tools that actually execute means the editing half of the API is early, and every integration requires a paid plan or credit pack. Builders evaluating it should probe the live catalogs, budget for per-job credits, and treat the current allow-list as the real boundary of what works today.
- #api
- #image-generation
- #image-editing
- #developer-tools