← 返回
未分类 Key 中文

Pop-cam NanoBanana

AI image generation in any visual style — photorealistic, cinematic, cartoon, illustration, and more. Transform photos or generate from text prompts via the...
AI图像生成,支持任意视觉风格——写实、电影、卡通、插画等。通过照片转换或文本提示生成图像。
petagit petagit 来源
未分类 clawhub v1.3.0 1 版本 99728.3 Key: 需要
★ 0
Stars
📥 367
下载
💾 0
安装
1
版本
#latest

概述

Pop-cam NanoBanana Skill

Generate images with the Pop-cam NanoBanana API. The model supports any visual style — photorealistic, cinematic, cartoon, illustration, watercolor, 3D render, and anything else you can describe in a prompt.

This skill supports two modes:

  • Image-to-image: send a base64-encoded photo and a prompt describing how to transform it.
  • Text-to-image: send only a prompt field (no image) to generate an image from scratch.

Both modes cost 1 credit per generation and use the same endpoint.

Authentication

All generation requests require a Pop-cam API token (pk_ prefix) in the Authorization header.

If the user does not have a token yet, walk them through these steps in order:

  1. Sign up at https://www.pop-cam.com/sign-up (skip if they already have an account).
  2. Sign in at https://www.pop-cam.com/sign-in.
  3. Create an API token at https://www.pop-cam.com/developer — label it "OpenClaw". Copy the token immediately; it is only shown once.

Store the token and send it on every request:

Authorization: Bearer pk_YOUR_TOKEN

If unsure whether the user is signed in, call the auth-status endpoint first:

curl https://www.pop-cam.com/api/openclaw/auth-status

The response tells you whether sign-in is needed and provides the relevant URLs.

Skill Definition JSON

For a machine-readable version of this entire skill (features, endpoints, schemas, examples), call:

curl https://www.pop-cam.com/api/openclaw/skill

Generation Endpoint

POST https://www.pop-cam.com/api/v1/nanobanana

Headers

HeaderValue
---------------
AuthorizationBearer pk_YOUR_TOKEN
Content-Typeapplication/json

Request Body

FieldTypeRequiredDescription
------------------------------------
imagestringNoBase64 data URL of the source image (data:image/png;base64,...). Omit entirely for text-to-image.
promptstringNoGeneration prompt. Required when image is omitted. Optional for image-to-image (a default prompt is used if omitted).
webhook_urlstringNoHTTPS URL to receive the result asynchronously. Omit for synchronous mode.

Image-to-Image Example

Transform an existing photo:

curl -X POST https://www.pop-cam.com/api/v1/nanobanana \
  -H "Authorization: Bearer $POPCAM_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "image": "data:image/png;base64,iVBOR...",
    "prompt": "Enhance this photo with cinematic lighting and shallow depth of field"
  }'

Text-to-Image Example

Generate an image from a text prompt only — no source photo needed:

curl -X POST https://www.pop-cam.com/api/v1/nanobanana \
  -H "Authorization: Bearer $POPCAM_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A photorealistic portrait of a man in a leather jacket standing on a city rooftop at golden hour, natural lighting, shallow depth of field"
  }'

Synchronous Response (200)

{
  "job_id": "a1b2c3d4-...",
  "image_url": "https://cdn.pop-cam.com/generated/user_id/a1b2c3d4.png",
  "download_url": "https://...r2.cloudflarestorage.com/...?X-Amz-Signature=...",
  "used_prompt": "A photorealistic portrait of a man in a leather jacket standing on a city rooftop at golden hour, natural lighting, shallow depth of field",
  "credits_remaining": 22,
  "mode": "text-to-image"
}

Important: Use download_url to fetch the generated image. It is a presigned URL valid for 1 hour that works regardless of storage bucket privacy settings. The image_url is the permanent stored reference but may not be directly accessible if the bucket is private.

The mode field is "text-to-image" or "image-to-image" depending on which path was used.

Webhook / Async Mode

Include webhook_url to get an immediate HTTP 202 response with a job_id. Pop-cam POSTs the result to your URL when generation completes (retries up to 3 times with exponential backoff).

Initial response (202):

{
  "job_id": "a1b2c3d4-...",
  "status": "processing",
  "message": "Your image is being generated. Results will be POSTed to your webhook_url."
}

Webhook delivery payload includes download_url (presigned, 1-hour expiry) for fetching the image.

Error Handling

StatusMeaningAction
-------------------------
401Invalid or missing tokenAsk the user to create or refresh their token at https://www.pop-cam.com/developer
402Insufficient creditsDirect the user to buy credits at https://www.pop-cam.com/checkout
403Account not syncedAsk the user to sign in via the web app first
400Bad request (e.g. missing prompt for text-to-image, invalid image format)Check the request body and fix the issue

Credits

  • Each generation (both modes) costs 1 credit.
  • New accounts receive starter credits for free.
  • Every response includes credits_remaining.
  • Purchase more at https://www.pop-cam.com/checkout.

Prompt Tips

The model is not limited to any single style. The output depends entirely on your prompt. Here are example styles you can request:

StyleExample prompt snippet
-----------------------------
Photorealistic"photorealistic photo, natural lighting, 85mm lens"
Cinematic"cinematic still frame, anamorphic lens flare, moody color grading"
Cartoon"colorful cartoon style, bold outlines, flat shading"
Illustration"editorial illustration, clean vector style"
Oil painting"oil painting on canvas, visible brushstrokes, impressionist style"
Watercolor"delicate watercolor painting, soft washes, paper texture"
3D render"3D rendered scene, volumetric lighting, octane render"
Pencil sketch"detailed pencil sketch on white paper, crosshatching"
Anime"anime style, Studio Ghibli-inspired, vibrant colors"

For the most realistic output, include details like lighting conditions, camera lens, depth of field, and environment in your prompt.

Quick Reference

TaskHow
-----------
Transform a photoSend image + optional prompt
Generate from textSend prompt only, no image field
Download the resultUse download_url from the response (presigned, 1-hour expiry)
Async processingAdd webhook_url to the request body
Check auth stateGET /api/openclaw/auth-status
Full skill JSONGET /api/openclaw/skill
Buy creditshttps://www.pop-cam.com/checkout
Create tokenhttps://www.pop-cam.com/developer

版本历史

共 1 个版本

  • v1.3.0 当前
    2026-05-07 16:07 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

Skill Vetter

spclaudehome
AI智能体技能安全预审工具。安装ClawdHub、GitHub等来源技能前,检查风险信号、权限范围及可疑模式。
★ 1,232 📥 268,323
ai-agent

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,086 📥 814,897
ai-agent

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,385 📥 321,022