For Agents
Generate dynamic social media graphics, Open Graph images, and banners from templates with text, logo, and styling parameters returned as PNG, JPEG, or WebP.
Get started with Bruzu API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"generate a dynamic image"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Bruzu API API.
Render Open Graph and social share images at 1200x630 with custom title text and brand colours
Compose multi-element graphics with text, logo, and shape primitives positioned by x and y pixel coordinates
Reuse saved templates by ID and override individual fields per request to produce per-recipient image variants
Output the same composition as PNG, JPEG, or WebP with adjustable JPEG and WebP quality
GET STARTED
Use for: Generate an Open Graph image for a blog post with the title and author name, I need to create a personalised social share image with the user's display name, Render a banner with a custom background colour and overlaid logo, List all image templates available in my Bruzu account
Not supported: Does not handle image hosting, asset CDN, or AI image synthesis from text prompts — use for template- and parameter-driven image rendering only.
Jentic publishes the only available OpenAPI document for Bruzu API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Bruzu API, keeping it validated and agent-ready. Bruzu is an image generation API that produces dynamic PNG, JPEG, and WebP images from reusable templates or URL query parameters. It is suited to social media graphics, Open Graph cards, banners, and personalised email images, with control over text, fonts, background colours, logos, and element positioning. Image requests can be issued via simple GET URLs for inline embedding or via POST with a JSON body for richer multi-element compositions.
Overlay logos and background images from external URLs onto generated graphics
List available templates from a Bruzu account to drive automated image pipelines
Patterns agents use Bruzu API API for, with concrete tasks.
★ Open Graph Image Generation
Generate per-page Open Graph and Twitter card images for blog posts, product pages, and landing pages without designing each one manually. Bruzu accepts the post title, author name, and brand colours as URL parameters and returns a 1200x630 PNG suitable for social sharing previews. Integration takes under an hour because the GET endpoint can be embedded directly in og:image meta tags.
Call generateImageGet with template=blog-og, a.text set to the post title, and b.text set to the author name, then return the resulting PNG URL
Personalised Marketing Graphics
Produce per-recipient marketing images for email campaigns, referral links, and onboarding flows. Each image can include the recipient's name, a personalised message, and the sender's logo overlaid at fixed coordinates. Bruzu renders the image on demand from a stored template, so a single template drives thousands of personalised variants without manual design work.
POST to / with a JSON body containing elements for the recipient's name, a logo overlay, and a brand background colour, then attach the returned image to an email
Template-Driven Brand Graphics
List, select, and render images from a Bruzu account's saved templates so non-designers can produce on-brand graphics from a structured catalogue. The /templates endpoint returns each template's ID, dimensions, and preview URL, which an agent can match to a request and then call the generation endpoint with the chosen template ID. Useful for marketing operations, e-commerce listing graphics, and event banners.
Call listTemplates, pick the template whose name matches 'product-card', then call generateImageGet with that template ID and the product name in a.text
AI Agent Image Composition
Allow an AI agent to assemble images on the fly from natural language by mapping descriptive parameters to Bruzu's element schema. Through Jentic, the agent searches for image generation, loads the JSON body shape for the POST endpoint, and submits an elements array containing text and image overlays at the requested positions. The agent never handles the API key directly because Jentic's vault injects it at execution time.
Use Jentic to search 'generate a branded image', load the generateImagePost schema, and execute it with an elements array containing a title text and a logo image overlay
3 endpoints — jentic publishes the only available openapi specification for bruzu api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/
Generate an image via URL query parameters
/
Generate an image from a JSON body with elements array
/templates
List available templates in the account
/
Generate an image via URL query parameters
/
Generate an image from a JSON body with elements array
/templates
List available templates in the account
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Bruzu apiKey is stored encrypted in the Jentic vault and injected as the apiKey query parameter at execution time. Agents receive scoped access through Jentic, so the raw API key never appears in prompts, logs, or browser network tabs.
Intent-based discovery
Agents search by intent (e.g., 'generate an Open Graph image') and Jentic returns the matching Bruzu operation with its parameter schema, so the agent can call generateImageGet or generateImagePost without browsing the docs.
Time to first call
Direct Bruzu integration: 1-2 hours to wire up auth, parameter encoding, and binary response handling. Through Jentic: under 15 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Buffer API
Schedules and publishes the social media posts that Bruzu generated images attach to
Choose Buffer alongside Bruzu when an agent needs to render a graphic and then post it to Twitter, LinkedIn, or Facebook on a schedule
Bluesky API
Posts the rendered Bruzu image to the Bluesky social network
Pair with Bruzu when an agent should generate a share card and immediately publish it as a Bluesky post
Bubble Data API
Stores generated image URLs and metadata in a no-code Bubble app
Use when a Bubble-based application needs to persist generated image references for later reuse
Specific to using Bruzu API API through Jentic.
Why is there no official OpenAPI spec for Bruzu API?
Bruzu does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Bruzu API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Bruzu API use?
Bruzu uses an API key passed as the apiKey query parameter on every request. The key is obtained from the Bruzu dashboard. When called through Jentic, the apiKey is stored encrypted in the Jentic vault and injected at execution time, so the raw key never enters the agent's prompt or context.
Can I generate Open Graph images with the Bruzu API?
Yes. Issue a GET request to / with width=1200, height=630, a template ID, and a.text set to the page title. Bruzu returns a PNG that can be served directly from your og:image meta tag. The same endpoint accepts backgroundColor, backgroundImage, logo, and per-element text and font parameters for fully branded cards.
What are the rate limits for the Bruzu API?
Specific rate limits are not published in the spec, but the API returns HTTP 429 when limits are exceeded. Check your plan in the Bruzu dashboard at https://bruzu.com for the current quota. When 429 is returned, retry with exponential backoff before falling back to a static image.
How do I generate a personalised image with the Bruzu API through Jentic?
Install the SDK with pip install jentic, then search for 'generate a branded image', load the generateImagePost schema, and execute with a JSON body containing an elements array. Jentic resolves the POST / endpoint, supplies the API key from the vault, and returns the rendered image binary.
What image formats does the Bruzu API support?
Bruzu returns PNG by default and supports JPEG and WebP via the format query parameter. JPEG and WebP also accept a quality parameter from 1 to 100 (default 90). Choose WebP at quality 85 for the smallest file size on web pages and PNG when transparency is required.