import type { Metadata } from 'next'; import { TipBox } from '@/components/docs/shared/TipBox'; import { CodeBlock } from '@/components/docs/shared/CodeBlock'; import { DocPage } from '@/components/docs/layout/DocPage'; import { JsonLd } from '@/components/seo/JsonLd'; import { createDocsMetadata, DOCS_PAGES } from '@/config/docs-seo'; import { createBreadcrumbSchema, createTechArticleSchema, HOW_TO_SCHEMA } from '@/config/docs-schema'; import { Hero, SectionHeader, ResponseBlock, LinkCard, LinkCardGrid, } from '@/components/docs/blocks'; const PAGE = DOCS_PAGES['getting-started']; export const metadata: Metadata = createDocsMetadata(PAGE); const breadcrumbSchema = createBreadcrumbSchema([ { name: 'Home', path: '/' }, { name: 'Documentation', path: '/docs/' }, ]); const articleSchema = createTechArticleSchema(PAGE); const tocItems = [ { id: 'what-is-banatie', text: 'What is Banatie?', level: 2 }, { id: 'your-first-image', text: 'Your First Image', level: 2 }, { id: 'production-ready', text: 'Production Ready', level: 2 }, { id: 'live-urls', text: 'Live URLs', level: 2 }, { id: 'get-your-api-key', text: 'Get Your API Key', level: 2 }, { id: 'next-steps', text: 'Next Steps', level: 2 }, ]; export default function GettingStartedPage() { return ( <>
What is Banatie?

Banatie is an image generation API for developers. Send a text prompt, get a production-ready image delivered via CDN.

Simple REST API. Optimized AI models that deliver consistent results. Images ready for production use immediately.

Your First Image

Once you have your API key, generate an image with a single request:

That's it. The response contains your image:

Open storageUrl in your browser — there's your robot.

Production Ready

The image URL is permanent and served via global CDN. What this means for you:

  • Fast access — images load in milliseconds
  • Edge cached — served from locations closest to your users
  • Global distribution — works fast everywhere in the world

One request. Production-ready result. Drop the URL into your app and ship.

Live URLs

Want to skip the API call entirely? Generate images directly from a URL:

Put this in an <img src="..."> tag. First request generates the image, all subsequent requests serve it from cache instantly.

Perfect for placeholders, dynamic content, and rapid prototyping.

Learn more about Live URLs →

Get Your API Key

We're currently in early access. API keys are issued personally.

To request access:

  1. Go to banatie.app
  2. Enter your email in the signup form
  3. We'll send your API key within 24 hours
); }