{
  "generated_at": "2026-04-24T15:01:35.625676+00:00",
  "slug": "api-venice-ai-api-v1-responses",
  "title": "Venice AI \u00b7 LLM Responses API",
  "url": "https://api.venice.ai/api/v1/responses",
  "category": "ai",
  "summary": "Generate LLM text and image responses through Venice AI's private inference API.",
  "seo": {
    "title": "Private LLM API | Venice AI x402 Inference",
    "description": "Access private, uncensored LLM inference via Venice AI API. Generate text and images with x402 micropayments. $10 USDC per call. Base network."
  },
  "use_cases": [
    "Generate text responses with uncensored private LLM",
    "Create images via AI inference API",
    "Build applications with private AI inference without subscriptions"
  ],
  "ideal_buyer": "Developers and agents needing private, uncensored LLM inference with per-call pricing.",
  "example_prompt": "Generate a creative story about space exploration",
  "risk_notes": [],
  "pricing_sanity": {
    "flag": "expensive_outlier",
    "ratio": 500,
    "median_category_atomic": 20000
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "indexed_external",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0x2670b922ef37c7df47158725c0cc407b5382293f",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "10000000",
      "max_timeout_seconds": 300,
      "verified": false,
      "hints": {
        "input": {
          "type": "http",
          "method": "POST",
          "bodyFields": {
            "input": {
              "required": true,
              "description": "The input to generate a response for. Can be a simple string or an array of messages."
            },
            "model": {
              "type": "string",
              "required": true,
              "description": "The ID of the model to use. E2EE-capable models are not supported on /api/v1/responses; use /api/v1/chat/completions with the required E2EE headers instead."
            },
            "tools": {
              "type": "array",
              "items": {},
              "description": "A list of tools the model may call."
            },
            "top_p": {
              "type": "number",
              "description": "Nucleus sampling parameter."
            },
            "stream": {
              "type": "boolean",
              "description": "Whether to stream back partial progress."
            },
            "include": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "Additional response fields to include (OpenAI-compatible)."
            },
            "reasoning": {
              "type": "object",
              "properties": {
                "effort": {
                  "enum": [
                    "none",
                    "minimal",
                    "low",
                    "medium",
                    "high",
                    "xhigh",
                    "max"
                  ],
                  "type": "string",
                  "description": "Controls reasoning effort level for supported models."
                },
                "summary": {
                  "enum": [
                    "auto",
                    "concise",
                    "detailed"
                  ],
                  "type": "string",
                  "description": "Controls reasoning summary format."
                }
              }
            },
            "web_search": {
              "type": "boolean",
              "description": "Enable web search for this request."
            },
            "temperature": {
              "type": "number",
              "description": "Sampling temperature between 0 and 2."
            },
            "tool_choice": {
              "description": "Controls which tool is called by the model."
            },
            "max_output_tokens": {
              "type": "integer",
              "description": "Maximum number of tokens to generate."
            },
            "venice_parameters": {
              "type": "object",
              "properties": {
                "enable_e2ee": {
                  "type": "boolean",
                  "description": "Enable end-to-end encryption for E2EE-capable models. When true (default), E2EE is used if headers are present. When false, TEE-only mode is used."
                },
                "character_slug": {
                  "type": "string",
                  "description": "The character slug of a public Venice character."
                },
                "enable_web_search": {
                  "enum": [
                    "auto",
                    "off",
                    "on"
                  ],
                  "type": "string",
                  "description": "Enable web search for this request."
                },
                "enable_web_scraping": {
                  "type": "boolean",
                  "description": "Enable Venice web scraping of URLs in the latest user message."
                },
                "enable_web_citations": {
                  "type": "boolean",
                  "description": "Request that the LLM cite its sources."
                },
                "include_venice_system_prompt": {
                  "type": "boolean",
                  "description": "Whether to include the Venice supplied system prompts."
                },
                "include_search_results_in_stream": {
                  "type": "boolean",
                  "description": "Include search results in the stream as the first emitted chunk."
                }
              }
            }
          }
        },
        "output": {
          "type": "object",
          "title": "Responses API Response",
          "required": [
            "id",
            "object",
            "created_at",
            "model",
            "status",
            "output"
          ],
          "properties": {
            "id": {
              "type": "string",
              "example": "resp_abc123",
              "description": "Unique identifier for the response."
            },
            "error": {
              "type": "object",
              "title": "Error",
              "required": [
                "code",
                "message"
              ],
              "properties": {
                "code": {
                  "type": "string"
                },
                "message": {
                  "type": "string"
                }
              },
              "description": "Error information if the response failed."
            },
            "model": {
              "type": "string",
              "description": "The model used for the response."
            },
            "usage": {
              "type": "object",
              "title": "Usage",
              "required": [
                "input_tokens",
                "output_tokens",
                "total_tokens"
              ],
              "properties": {
                "input_tokens": {
                  "type": "integer"
                },
                "total_tokens": {
                  "type": "integer"
                },
                "output_tokens": {
                  "type": "integer"
                },
                "input_tokens_details": {
                  "type": "object",
                  "properties": {
                    "cached_tokens": {
                      "type": "integer"
                    }
                  }
                },
                "output_tokens_details": {
                  "type": "object",
                  "properties": {
                    "reasoning_tokens": {
                      "type": "integer"
                    }
                  }
                }
              },
              "description": "Token usage statistics."
            },
            "object": {
              "enum": [
                "response"
              ],
              "type": "string",
              "description": "The object type."
            },
            "output": {
              "type": "array",
              "items": {
                "anyOf": [
                  {
                    "type": "object",
                    "title": "Reasoning Output",
                    "required": [
                      "type",
                      "id"
                    ],
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "type": {
                        "enum": [
                          "reasoning"
                        ],
                        "type": "string"
                      },
                      "summary": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "encrypted_content": {
                        "type": "string"
                      }
                    }
                  },
                  {
                    "type": "object",
                    "title": "Message Output",
                    "required": [
                      "type",
                      "id",
                      "status",
                      "role",
                      "content"
                    ],
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "role": {
                        "enum": [
                          "assistant"
                        ],
                        "type": "string"
                      },
                      "type": {
                        "enum": [
                          "message"
                        ],
                        "type": "string"
                      },
                      "status": {
                        "enum": [
                          "completed",
                          "in_progress",
                          "failed"
                        ],
                        "type": "string"
                      },
                      "content": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "title": "Output Text",
                          "required": [
                            "type",
                            "text"
                          ],
                          "properties": {
                            "text": {
                              "type": "string"
                            },
                            "type": {
                              "enum": [
                                "output_text"
                              ],
                              "type": "string"
                            },
                            "annotations": {
                              "type": "array",
                              "items": {
                                "type": "object",
                                "title": "URL Citation Annotation",
                                "required": [
                                  "type",
                                  "url",
                                  "start_index",
                                  "end_index"
                                ],
                                "properties": {
                                  "url": {
                                    "type": "string"
                                  },
                                  "type": {
                                    "enum": [
                                      "url_citation"
                                    ],
                                    "type": "string"
                                  },
                                  "title": {
                                    "type": "string"
                                  },
                                  "end_index": {
                                    "type": "integer"
                                  },
                                  "start_index": {
                                    "type": "integer"
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  },
                  {
                    "type": "object",
                    "title": "Function Call Output",
                    "required": [
                      "type",
                      "id",
                      "call_id",
                      "name",
                      "arguments",
                      "status"
                    ],
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "name": {
                        "type": "string"
                      },
                      "type": {
                        "enum": [
                          "function_call"
                        ],
                        "type": "string"
                      },
                      "status": {
                        "enum": [
                          "completed",
                          "in_progress"
                        ],
                        "type": "string"
                      },
                      "call_id": {
                        "type": "string"
                      },
                      "arguments": {
                        "type": "string"
                      }
                    }
                  },
                  {
                    "type": "object",
                    "title": "Web Search Call Output",
                    "required": [
                      "type",
                      "id",
                      "status"
                    ],
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "type": {
                        "enum": [
                          "web_search_call"
                        ],
                        "type": "string"
                      },
                      "status": {
                        "enum": [
                          "completed"
                        ],
                        "type": "string"
                      }
                    }
                  }
                ]
              },
              "description": "The output items generated by the model."
            },
            "status": {
              "enum": [
                "completed",
                "failed",
                "in_progress",
                "cancelled"
              ],
              "type": "string",
              "description": "The status of the response."
            },
            "created_at": {
              "type": "integer",
              "description": "Unix timestamp of when the response was created."
            }
          },
          "description": "Response from the Responses API endpoint."
        }
      }
    }
  ],
  "origin": {
    "slug": "api-venice-ai",
    "host": "api.venice.ai",
    "title": "Venice API Docs",
    "description": "Harness the full capabilities of Venice AI with the Venice API, a private and uncensored AI API enabling the development of advanced applications that generate text and images.",
    "url": "https://api.venice.ai",
    "og_image": "https://venice.ai/images/venice_social_preview.png",
    "favicon": "https://docs.venice.ai/mintlify-assets/_mintlify/favicons/veniceai/HJGBlV4jYrSOrFXh/_generated/favicon/favicon-16x16.png"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/api-venice-ai-api-v1-responses",
    "url": "https://x402all.com/resource/api-venice-ai-api-v1-responses",
    "name": "Venice AI \u00b7 LLM Responses API",
    "@type": "WebAPI",
    "offers": {
      "url": "https://x402all.com/resource/api-venice-ai-api-v1-responses",
      "@type": "Offer",
      "price": "10",
      "availability": "https://schema.org/InStock",
      "priceCurrency": "USDC",
      "priceSpecification": {
        "@type": "UnitPriceSpecification",
        "price": "10.000000",
        "unitText": "call",
        "priceCurrency": "USDC"
      },
      "eligibleCustomerType": "Agent",
      "additionalProperty": [
        {
          "@type": "PropertyValue",
          "name": "paymentNetwork",
          "value": "base"
        },
        {
          "@type": "PropertyValue",
          "name": "paymentAsset",
          "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
        }
      ]
    },
    "sameAs": "https://api.venice.ai/api/v1/responses",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/api-venice-ai",
      "url": "https://api.venice.ai",
      "name": "Venice API Docs",
      "@type": "Organization"
    },
    "identifier": "api-venice-ai-api-v1-responses",
    "description": "Access private, uncensored LLM inference via Venice AI API. Generate text and images with x402 micropayments. $10 USDC per call. Base network.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=api-venice-ai-api-v1-responses",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "ai"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=api-venice-ai-api-v1-responses"
}
