canonical: https://jentic.com/apis/pixelpanda.ai/pixelpanda

# PixelPanda API

AI-powered image processing API for background removal, upscaling, text removal, image-to-image transformation, product marketing, UGC video generation, and batch processing. The API exposes 10 endpoints secured with bearer authentication.

## For AI agents

Programmatically process an image, generate product marketing images. Covers 10 operations with bearer authentication.

## Scope

Does not handle payments, communications, or crm - use for marketing only.

## Capabilities

- Process an image
- Generate product marketing images
- Submit batch processing job
- Get batch status
- Create single-item job

## Use cases

### Marketing Operations

Use the PixelPanda API to perform marketing operations programmatically. The API provides 10 endpoints covering core functionality including process an image, generate product marketing images, generate ugc video.

Example prompt: Call POST `/api/process` to process an image

### Automated Batch Processing Management

Automate batch processing operations by combining multiple PixelPanda API endpoints. Agents can generate product marketing images and then generate ugc video in a single workflow.

Example prompt: Call POST `/api/tryon/generate` to generate product marketing images, then verify the result

### AI Agent Integration via Jentic

AI agents discover and call PixelPanda API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle bearer tokens manually.

Example prompt: Search Jentic for 'process an image', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | `/api/process` | Process an image |
| POST | `/api/tryon/generate` | Generate product marketing images |
| POST | `/api/tryon/quick-video` | Generate UGC video |
| POST | `/api/v2/batches` | Submit batch processing job |
| GET | `/api/v2/batches/{batchId}` | Get batch status |
| POST | `/api/v2/jobs` | Create single-item job |
| GET | `/api/v2/jobs/{jobId}` | Get job status |
| POST | `/api/v2/webhooks` | Register webhook |

## Key resources

- **Batch Processing** — Operations related to Batch Processing
- **Image Processing** — Operations related to Image Processing
- **Jobs** — Operations related to Jobs
- **Product Marketing** — Operations related to Product Marketing
- **Webhooks** — Operations related to Webhooks

## Why Jentic

- **Setup:** Wiring PixelPanda by hand means managing its bearer token, polling job and batch status, and handling retries yourself. Through Jentic you install once, import PixelPanda from the API Directory, store the token once, and your agent calls it.
- **Permission scoping:** You limit the agent to the operations it needs, such as processing an image or creating a job. Because you choose the allowed operations, registering a webhook stays out of scope unless you add it.
- **Credential handling:** Your PixelPanda bearer token is stored once, encrypted, by your own Jentic One instance and injected as an Authorization header at execution time. It never enters the agent's prompt, logs, or context.
- **Discovery method:** Agents search Jentic by intent such as 'process an image' or 'check a job's status', and Jentic returns the matching PixelPanda operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Mailchimp** — Alternative marketing API
- **Hubspot** — Alternative marketing API

## FAQ

### What authentication does the PixelPanda API use?

The PixelPanda API uses a Bearer token in the Authorization header. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.

### Can I process an image with the PixelPanda API?

Yes. Use the POST `/api/process` endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the PixelPanda API?

Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.

### How do I process an image through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'process an image'. Jentic returns the matching PixelPanda API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the PixelPanda API have?

The PixelPanda API exposes 10 endpoints covering batch processing, image processing, jobs operations.

### Can I limit what my agent is allowed to do with the PixelPanda API?

Yes. Because Jentic One is self-hosted, you set the rules for which PixelPanda operations and credentials your agent may use. You can allow only the calls it needs, such as processing an image (POST `/api/process`) or creating a job (POST `/api/v2/jobs`), while leaving higher-impact operations like registering a webhook (POST `/api/v2/webhooks`) out of scope until you add them. Your stored bearer token is injected at execution time, so the agent only reaches the endpoints you have permitted.
