{
  "generated_at": "2026-04-24T15:01:35.625676+00:00",
  "slug": "o6htzlrn-nx-link-image-generate",
  "title": "Venice.ai \u00b7 Image Generation",
  "url": "https://o6htzlrn.nx.link/image/generate",
  "category": "media",
  "summary": "Generate AI images using Venice.ai API with customizable generation parameters and compression support.",
  "seo": {
    "title": "AI Image Generation API | Venice.ai | x402 USDC on Base",
    "description": "Pay-per-call AI image generation via Venice.ai API. Generate images with customizable parameters. USDC micropayments on Base. Supports compression encodings."
  },
  "use_cases": [
    "Generate custom images from text prompts",
    "Create visual assets for content and marketing",
    "Produce AI artwork with configurable parameters"
  ],
  "ideal_buyer": "Content creators, marketing automation, and agents needing programmatic AI image generation.",
  "example_prompt": "Generate an image of a futuristic city at sunset",
  "example_request_body": {
    "seed": 42,
    "width": 1024,
    "height": 1024,
    "prompt": "futuristic city at sunset"
  },
  "risk_notes": [],
  "pricing_sanity": {
    "flag": "cheap",
    "ratio": 0.125,
    "median_category_atomic": 80000
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "indexed_external",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0x416301691d75f29ce8ea355246d3c87baa65d38b",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "10000",
      "max_timeout_seconds": 300,
      "mime_type": "application/json",
      "description": "Venice.ai API https://api.venice.ai/api/v1 - POST /api/v1/image/generate",
      "verified": false,
      "hints": {
        "responses": {
          "200": {
            "content": {
              "image/png": {
                "schema": {
                  "type": "string",
                  "format": "binary",
                  "description": "Raw image data when return_binary is true and format is png"
                }
              },
              "image/jpeg": {
                "schema": {
                  "type": "string",
                  "format": "binary",
                  "description": "Raw image data when return_binary is true and format is jpeg"
                }
              },
              "image/webp": {
                "schema": {
                  "type": "string",
                  "format": "binary",
                  "description": "Raw image data when return_binary is true and format is webp"
                }
              },
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "id",
                    "images",
                    "timing"
                  ],
                  "properties": {
                    "id": {
                      "type": "string",
                      "example": "generate-image-1234567890",
                      "description": "The ID of the request."
                    },
                    "images": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      },
                      "description": "Base64 encoded image data."
                    },
                    "timing": {
                      "type": "object",
                      "required": [
                        "inferenceDuration",
                        "inferencePreprocessingTime",
                        "inferenceQueueTime",
                        "total"
                      ],
                      "properties": {
                        "total": {
                          "type": "number",
                          "description": "Total duration of the request in milliseconds"
                        },
                        "inferenceDuration": {
                          "type": "number",
                          "description": "Duration of inference in milliseconds"
                        },
                        "inferenceQueueTime": {
                          "type": "number",
                          "description": "Duration of queueing in milliseconds"
                        },
                        "inferencePreprocessingTime": {
                          "type": "number",
                          "description": "Duration of preprocessing in milliseconds"
                        }
                      }
                    },
                    "request": {
                      "nullable": true,
                      "description": "The original request data sent to the API."
                    }
                  }
                }
              }
            },
            "headers": {
              "Content-Encoding": {
                "schema": {
                  "enum": [
                    "gzip",
                    "br"
                  ],
                  "type": "string"
                },
                "description": "The encoding used to compress the response"
              },
              "x-venice-is-blurred": {
                "schema": {
                  "type": "boolean"
                },
                "required": false,
                "description": "Indicates if the generated image is blurred. When Safe Venice is enabled, adult material will be returned blurred."
              },
              "x-venice-is-content-violation": {
                "schema": {
                  "type": "boolean"
                },
                "required": false,
                "description": "Indicates if the generated image does not meet Venice terms of service."
              },
              "x-venice-model-deprecation-date": {
                "schema": {
                  "type": "string",
                  "format": "date-time"
                },
                "required": false,
                "description": "The date the model is scheduled for deprecation"
              },
              "x-venice-model-deprecation-warning": {
                "schema": {
                  "type": "string"
                },
                "required": false,
                "description": "A warning that the model is scheduled for deprecation"
              }
            },
            "description": "Successfully generated image"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DetailedError"
                }
              }
            },
            "description": "Invalid request parameters"
          },
          "401": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StandardError"
                }
              }
            },
            "description": "Authentication failed"
          },
          "402": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StandardError"
                }
              }
            },
            "description": "Insufficient USD or Diem balance to complete request"
          },
          "415": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StandardError"
                }
              }
            },
            "description": "Invalid request content-type"
          },
          "429": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StandardError"
                }
              }
            },
            "description": "Rate limit exceeded"
          },
          "500": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StandardError"
                }
              }
            },
            "description": "Inference processing failed"
          },
          "503": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StandardError"
                }
              }
            },
            "description": "The model is at capacity. Please try again later."
          }
        },
        "parameters": [
          {
            "in": "header",
            "name": "Accept-Encoding",
            "schema": {
              "type": "string",
              "example": "gzip, br"
            },
            "required": false,
            "description": "Supported compression encodings (gzip, br). Only applied when return_binary is false."
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GenerateImageRequest"
              }
            }
          }
        }
      }
    }
  ],
  "origin": {
    "slug": "o6htzlrn-nx-link",
    "host": "o6htzlrn.nx.link",
    "title": "o6htzlrn.nx.link: Image & Chat Generation API",
    "description": "Provides AI-powered endpoints for image generation, upscaling, and editing, plus chat completions, embeddings, and text-to-speech. Includes API key management and model discovery endpoints.",
    "url": "https://o6htzlrn.nx.link"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/o6htzlrn-nx-link-image-generate",
    "url": "https://x402all.com/resource/o6htzlrn-nx-link-image-generate",
    "name": "Venice.ai \u00b7 Image Generation",
    "@type": "WebAPI",
    "offers": {
      "url": "https://x402all.com/resource/o6htzlrn-nx-link-image-generate",
      "@type": "Offer",
      "price": "0.01",
      "availability": "https://schema.org/InStock",
      "priceCurrency": "USDC",
      "priceSpecification": {
        "@type": "UnitPriceSpecification",
        "price": "0.010000",
        "unitText": "call",
        "priceCurrency": "USDC"
      },
      "eligibleCustomerType": "Agent",
      "additionalProperty": [
        {
          "@type": "PropertyValue",
          "name": "paymentNetwork",
          "value": "base"
        },
        {
          "@type": "PropertyValue",
          "name": "paymentAsset",
          "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
        }
      ]
    },
    "sameAs": "https://o6htzlrn.nx.link/image/generate",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/o6htzlrn-nx-link",
      "url": "https://o6htzlrn.nx.link",
      "name": "o6htzlrn.nx.link: Image & Chat Generation API",
      "@type": "Organization"
    },
    "identifier": "o6htzlrn-nx-link-image-generate",
    "description": "Pay-per-call AI image generation via Venice.ai API. Generate images with customizable parameters. USDC micropayments on Base. Supports compression encodings.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=o6htzlrn-nx-link-image-generate",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "media"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=o6htzlrn-nx-link-image-generate"
}
