createa.meme
API Reference

Edit or remix an existing image

AI image editing: outpainting, inpainting and remixing. Provide an image (URL or base64) plus a prompt. With `model: gpt-image-2` you can supply a mask whose transparent pixels mark the region to repaint — true outpainting. With `model: grok` the image is used as creative reference. Costs 5 credits.

POST
/v1/meme/remix

Authorization

bearerAuth
AuthorizationBearer <token>

Before clicking 'Try it' or copying the curl example, paste your API key into the Authorization input field on this page. Format: cam_live_xxxxxxxxxxxxxxxxxxxx (the playground will prepend Bearer for you). Get a free key at the dashboard — 20 generations per month, no card required.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "https://api.createa.meme/v1/meme/remix" \  -H "Content-Type: application/json" \  -d '{    "prompt": "Extend this painting into a grand museum hall around it, gilded frame, marble columns.",    "image_b64": "<base64 png with transparent border>",    "mask_b64": "<base64 png, transparent where to paint>",    "model": "gpt-image-2",    "size": "1536x1024"  }'
Empty
Empty
Empty