name: polymer-pay-quiver description: 'USE THIS SKILL WHEN: the user wants to generate SVGs from text prompts, vectorize raster images to SVG, or create AI-generated vector graphics. Provides AI SVG generation via QuiverAI through the Polymer Pay proxy.' endpoints:
- path: /v1/svgs/generations method: POST price: $0.30 description: Generate SVG from text prompt
- path: /v1/svgs/vectorizations method: POST price: $0.30 description: Vectorize raster image to SVG
- path: /pricing method: GET price: $0.00 description: Current pricing info
- path: /health method: GET price: $0.00 description: Health check
- path: /openapi.json method: GET price: $0.00 description: OpenAPI 3.1.0 specification metadata: polymer-pay-skill: emoji: ๐จ requires: env: - POLYMER_PAY_API_KEY primaryEnv: POLYMER_PAY_API_KEY
registries: {} provider: x402endpoints
Quiver
AI-powered SVG generation and image vectorization service using QuiverAI's Arrow model. Generate scalable vector graphics from text prompts or convert raster images to clean SVG format. Through the Polymer Pay proxy, each request is paid individually โ no QuiverAI account or API key required.
Authentication
All requests route through the Polymer Pay proxy. Include your Polymer Pay API key in every request:
{
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Base URL: https://pay.polymerlabs.org/proxy/https/quiver.x402endpoints.com
To get an Polymer Pay API key, sign up at https://my.pay.polymerlabs.org/dashboard/api-keys.
Common Operations
Generate SVG from Text
Generate scalable vector graphics from a text description using AI.
Pricing: $0.30
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/quiver.x402endpoints.com/v1/svgs/generations",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"prompt": "a minimalist logo of a mountain with a sun rising behind it"
}
}
Response: JSON with generated SVG(s) and token usage metadata. Optional parameters: instructions (style guidance), references (reference images), n (number of outputs), temperature, max_output_tokens.
Vectorize an Image
Convert a raster image (PNG, JPG, etc.) to clean SVG format using AI.
Pricing: $0.30
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/quiver.x402endpoints.com/v1/svgs/vectorizations",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"image": "https://example.com/logo.png"
}
}
Response: JSON with vectorized SVG(s) and token usage metadata. The image field accepts a URL or base64-encoded image data. Optional parameters: auto_crop, target_size, n, temperature.
Get Pricing
Retrieve current per-endpoint pricing.
Pricing: $0.00
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/quiver.x402endpoints.com/pricing",
"headers": {
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: JSON with pricing for each endpoint.
When to Use
- Logo generation โ Create vector logos from text descriptions
- Icon design โ Generate SVG icons for UI components
- Image vectorization โ Convert raster images to scalable SVG format
- Illustration โ Create AI-generated vector illustrations
- Brand assets โ Generate scalable brand graphics programmatically
Best Practices
- Be specific in prompts โ Describe colors, style, composition for better results
- Use instructions โ Add style guidance via the
instructionsparameter for consistent output - Provide references โ Pass reference images to guide the AI's style
- Use vectorization for existing assets โ Convert existing raster logos/icons to clean SVGs
- For errors โ See @skills/polymer-pay-api-errors/SKILL.md for complete error code reference and troubleshooting