{
  "generated_at": "2026-04-24T15:01:35.625676+00:00",
  "slug": "bk9jpt7z-nx-link-chat-completions",
  "title": "Venice.ai \u00b7 Chat Completions",
  "url": "https://bk9jpt7z.nx.link/chat/completions",
  "category": "ai",
  "summary": "Generate chat completions using Venice.ai language models.",
  "seo": {
    "title": "Venice.ai Chat Completions API | x402 Payment",
    "description": "Access Venice.ai LLM chat completions via x402. 0.01 USDC per call on Base network."
  },
  "use_cases": [
    "Integrate private LLM inference into agent workflows",
    "Generate conversational responses without API keys",
    "Access uncensored model outputs for research"
  ],
  "ideal_buyer": "AI agents requiring private, keyless LLM access for conversational tasks.",
  "example_prompt": "Explain quantum computing in simple terms",
  "example_request_body": {
    "messages": [
      {
        "role": "user",
        "content": "Explain quantum computing"
      }
    ]
  },
  "risk_notes": [],
  "pricing_sanity": {
    "flag": "normal",
    "ratio": 1,
    "median_category_atomic": 10000
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "indexed_external",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0x6c404c6aa5ddd01a9a5978f67f16a4c44174c288",
      "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/chat/completions",
      "verified": false,
      "hints": {
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "example": {
                    "id": "chatcmpl-a81fbc2d81a7a083bb83ccf9f44c6e5e",
                    "model": "qwen-2.5-vl",
                    "usage": {
                      "total_tokens": 758,
                      "prompt_tokens": 612,
                      "completion_tokens": 146
                    },
                    "object": "chat.completion",
                    "choices": [
                      {
                        "index": 0,
                        "message": {
                          "role": "assistant",
                          "content": "The sky appears blue because of the way Earth's atmosphere scatters sunlight. When sunlight reaches Earth's atmosphere, it is made up of various colors of the spectrum, but blue light waves are shorter and scatter more easily when they hit the gases and particles in the atmosphere. This scattering occurs in all directions, but from our perspective on the ground, it appears as a blue hue that dominates the sky's color. This phenomenon is known as Rayleigh scattering. During sunrise and sunset, the sunlight has to travel further through the atmosphere, which allows more time for the blue light to scatter away from our direct line of sight, leaving the longer wavelengths, such as red, yellow, and orange, to dominate the sky's color.",
                          "tool_calls": []
                        },
                        "finish_reason": "stop"
                      }
                    ],
                    "created": 1739928524,
                    "venice_parameters": {
                      "character_slug": "venice",
                      "disable_thinking": true,
                      "enable_web_search": "auto",
                      "enable_web_scraping": false,
                      "enable_web_citations": true,
                      "web_search_citations": [],
                      "strip_thinking_response": true,
                      "include_venice_system_prompt": true,
                      "include_search_results_in_stream": false,
                      "return_search_results_as_documents": false
                    }
                  },
                  "required": [
                    "choices",
                    "created",
                    "id",
                    "model",
                    "object",
                    "usage"
                  ],
                  "properties": {
                    "id": {
                      "type": "string",
                      "example": "chatcmpl-abc123",
                      "description": "The ID of the request."
                    },
                    "model": {
                      "type": "string",
                      "example": "venice-uncensored",
                      "description": "The model id used for the request."
                    },
                    "usage": {
                      "type": "object",
                      "required": [
                        "completion_tokens",
                        "prompt_tokens",
                        "total_tokens"
                      ],
                      "properties": {
                        "total_tokens": {
                          "type": "integer",
                          "example": 30,
                          "description": "The total number of tokens used in the request."
                        },
                        "prompt_tokens": {
                          "type": "integer",
                          "example": 10,
                          "description": "The number of tokens in the prompt."
                        },
                        "completion_tokens": {
                          "type": "integer",
                          "example": 20,
                          "description": "The number of tokens in the completion."
                        },
                        "prompt_tokens_details": {
                          "type": "object",
                          "nullable": true,
                          "properties": {},
                          "description": "Breakdown of tokens used in the prompt. Not presently used by Venice."
                        }
                      }
                    },
                    "object": {
                      "enum": [
                        "chat.completion"
                      ],
                      "type": "string",
                      "example": "chat.completion",
                      "description": "The type of the object returned."
                    },
                    "choices": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "required": [
                          "finish_reason",
                          "index",
                          "logprobs",
                          "message"
                        ],
                        "properties": {
                          "index": {
                            "type": "integer",
                            "example": 0,
                            "description": "The index of the choice in the list."
                          },
                          "message": {
                            "anyOf": [
                              {
                                "type": "object",
                                "title": "Assistant Message",
                                "required": [
                                  "role"
                                ],
                                "properties": {
                                  "name": {
                                    "type": "string"
                                  },
                                  "role": {
                                    "enum": [
                                      "assistant"
                                    ],
                                    "type": "string"
                                  },
                                  "content": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "title": "String"
                                      },
                                      {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "title": "text",
                                          "example": {
                                            "text": "Why is the sky blue?",
                                            "type": "text"
                                          },
                                          "required": [
                                            "text",
                                            "type"
                                          ],
                                          "properties": {
                                            "text": {
                                              "type": "string",
                                              "title": "Text Content Object",
                                              "example": "Why is the sky blue?",
                                              "minLength": 1,
                                              "description": "The prompt text of the message. Must be at-least one character in length"
                                            },
                                            "type": {
                                              "enum": [
                                                "text"
                                              ],
                                              "type": "string",
                                              "title": "Text Content String"
                                            }
                                          },
                                          "description": "Text message type.",
                                          "additionalProperties": false
                                        },
                                        "title": "Objects"
                                      },
                                      {
                                        "title": "null",
                                        "nullable": true
                                      }
                                    ]
                                  },
                                  "tool_calls": {
                                    "type": "array",
                                    "items": {
                                      "nullable": true
                                    },
                                    "nullable": true
                                  },
                                  "reasoning_content": {
                                    "type": "string",
                                    "nullable": true
                                  }
                                },
                                "description": "The assistant message contains the response from the LLM. Must have either content or tool_calls."
                              },
                              {
                                "type": "object",
                                "title": "Tool Message",
                                "required": [
                                  "content",
                                  "role",
                                  "tool_call_id"
                                ],
                                "properties": {
                                  "name": {
                                    "type": "string"
                                  },
                                  "role": {
                                    "enum": [
                                      "tool"
                                    ],
                                    "type": "string"
                                  },
                                  "content": {
                                    "type": "string"
                                  },
                                  "tool_calls": {
                                    "type": "array",
                                    "items": {
                                      "nullable": true
                                    },
                                    "nullable": true
                                  },
                                  "tool_call_id": {
                                    "type": "string"
                                  },
                                  "reasoning_content": {
                                    "type": "string",
                                    "nullable": true
                                  }
                                },
                                "description": "The tool message is a special message that is used to call a tool. It is not part of the conversation and is not visible to the user."
                              }
                            ]
                          },
                          "logprobs": {
                            "type": "object",
                            "nullable": true,
                            "required": [
                              "logprob",
                              "token"
                            ],
                            "properties": {
                              "bytes": {
                                "type": "array",
                                "items": {
                                  "type": "number"
                                },
                                "example": [
                                  104,
                                  101,
                                  108,
                                  108,
                                  111
                                ],
                                "description": "Raw bytes of the token"
                              },
                              "token": {
                                "type": "string",
                                "example": "hello",
                                "description": "The token string"
                              },
                              "logprob": {
                                "type": "number",
                                "example": -0.34,
                                "description": "The log probability of this token"
                              },
                              "top_logprobs": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "required": [
                                    "logprob",
                                    "token"
                                  ],
                                  "properties": {
                                    "bytes": {
                                      "type": "array",
                                      "items": {
                                        "type": "number"
                                      }
                                    },
                                    "token": {
                                      "type": "string"
                                    },
                                    "logprob": {
                                      "type": "number"
                                    }
                                  }
                                },
                                "description": "Top tokens considered with their log probabilities"
                              }
                            }
                          },
                          "stop_reason": {
                            "enum": [
                              "stop",
                              "length"
                            ],
                            "type": "string",
                            "example": "stop",
                            "nullable": true,
                            "description": "The reason the completion stopped."
                          },
                          "finish_reason": {
                            "enum": [
                              "stop",
                              "length"
                            ],
                            "type": "string",
                            "example": "stop",
                            "description": "The reason the completion finished."
                          }
                        }
                      },
                      "example": [
                        {
                          "index": 0,
                          "message": {
                            "role": "assistant",
                            "content": "The sky appears blue because of the way Earth's atmosphere scatters sunlight. When sunlight reaches Earth's atmosphere, it is made up of various colors of the spectrum, but blue light waves are shorter and scatter more easily when they hit the gases and particles in the atmosphere. This scattering occurs in all directions, but from our perspective on the ground, it appears as a blue hue that dominates the sky's color. This phenomenon is known as Rayleigh scattering. During sunrise and sunset, the sunlight has to travel further through the atmosphere, which allows more time for the blue light to scatter away from our direct line of sight, leaving the longer wavelengths, such as red, yellow, and orange, to dominate the sky's color.",
                            "tool_calls": []
                          },
                          "finish_reason": "stop"
                        }
                      ],
                      "description": "A list of chat completion choices. Can be more than one if n is greater than 1."
                    },
                    "created": {
                      "type": "integer",
                      "example": 1677858240,
                      "description": "The time at which the request was created."
                    },
                    "prompt_logprobs": {
                      "anyOf": [
                        {
                          "title": "null",
                          "nullable": true
                        },
                        {
                          "type": "object",
                          "additionalProperties": {
                            "nullable": true
                          }
                        },
                        {
                          "title": "null",
                          "nullable": true
                        }
                      ],
                      "description": "Log probability information for the prompt."
                    },
                    "venice_parameters": {
                      "type": "object",
                      "required": [
                        "enable_web_search",
                        "enable_web_citations",
                        "enable_web_scraping",
                        "include_venice_system_prompt",
                        "include_search_results_in_stream",
                        "return_search_results_as_documents",
                        "strip_thinking_response",
                        "disable_thinking"
                      ],
                      "properties": {
                        "character_slug": {
                          "type": "string",
                          "example": "venice",
                          "description": "The character slug of a public Venice character."
                        },
                        "disable_thinking": {
                          "type": "boolean",
                          "example": true,
                          "description": "Did the request disable thinking?"
                        },
                        "enable_web_search": {
                          "enum": [
                            "auto",
                            "off",
                            "on"
                          ],
                          "type": "string",
                          "example": "auto",
                          "description": "Did the request enable web search?"
                        },
                        "enable_web_scraping": {
                          "type": "boolean",
                          "example": false,
                          "description": "Did the request enable web scraping of URLs via Firecrawl?"
                        },
                        "enable_web_citations": {
                          "type": "boolean",
                          "example": true,
                          "description": "Did the request enable web citations?"
                        },
                        "web_search_citations": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "required": [
                              "title",
                              "url"
                            ],
                            "properties": {
                              "url": {
                                "type": "string"
                              },
                              "date": {
                                "type": "string"
                              },
                              "title": {
                                "type": "string"
                              },
                              "content": {
                                "type": "string"
                              }
                            }
                          },
                          "example": [
                            {
                              "url": "https://www.skyatnightmagazine.com/space-science/why-is-the-sky-blue",
                              "date": "2024-08-13T13:45:16",
                              "title": "Why is the sky blue? | BBC Sky at Night Magazine",
                              "content": "What&#x27;s the scientific reason behind Earth&#x27;s sky appearing blue to the human eye? And what&#x27;s the real colour of the sky?\n\nSave 30% on the shop price when you subscribe to BBC Sky at Night Magazine today!\n\nIn this article we'll look at the science behind why the sky is blue, or at least why it appears blue to our eyes.\n\nA beautiful blue sky is the sign of a pleasant day ahead. But what makes the sky appear blue?\n\nSo, the sky appears blue because the molecules of nitrogen and oxygen in the atmosphere scatter light in short wavelengths towards the blue end of the visible spectrum."
                            },
                            {
                              "url": "https://theconversation.com/why-is-the-sky-blue-246393",
                              "date": "2025-04-16T16:55:11",
                              "title": "Why is the sky blue?",
                              "content": "It was around 1870 when the British physicist John William Strutt, better known as Lord Rayleigh, first found an explanation for why the sky is blue: Blue light from the Sun is scattered the most when it passes through the atmosphere.\n\nPublished: January 20, 2025 8:34am EST \u00b7 Daniel Freedman, University of Wisconsin-Stout \u00b7 Daniel Freedman \u00b7 Dean of the College of Science, Technology, Engineering, Mathematics & Management, University of Wisconsin-Stout \u00b7\n\nThe answer has to do with molecules.\n\nIt was around 1870 when the British physicist John William Strutt, better known as Lord Rayleigh, first found an explanation for why the sky is blue: Blue light from the Sun is scattered the most when it passes through the atmosphere.\n\nWhen the Sun is near the horizon, its light passes through a lot more of the atmosphere to reach the Earth\u2019s surface than when it is directly overhead. The blue and green light is scattered so well that you can hardly see it. The sky is colored, instead, with red and orange light."
                            }
                          ],
                          "description": "Citations from web search results."
                        },
                        "strip_thinking_response": {
                          "type": "boolean",
                          "example": true,
                          "description": "Did the request strip thinking response?"
                        },
                        "include_venice_system_prompt": {
                          "type": "boolean",
                          "example": true,
                          "description": "Did the request include the Venice system prompt?"
                        },
                        "include_search_results_in_stream": {
                          "type": "boolean",
                          "example": false,
                          "description": "Did the request include search results in the stream?"
                        },
                        "return_search_results_as_documents": {
                          "type": "boolean",
                          "example": true,
                          "description": "Did the request also return search results as a tool-call documents block?"
                        }
                      },
                      "description": "Unique parameters to Venice's API implementation."
                    }
                  }
                }
              }
            },
            "headers": {
              "Content-Encoding": {
                "schema": {
                  "enum": [
                    "gzip",
                    "br"
                  ],
                  "type": "string"
                },
                "description": "The encoding used to compress the response"
              }
            },
            "description": "OK"
          },
          "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."
          },
          "504": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StandardError"
                }
              }
            },
            "description": "The request took too long to complete and was timed-out. For long-running inference requests, use the streaming API by setting stream=true in your request."
          }
        },
        "parameters": [
          {
            "in": "header",
            "name": "Accept-Encoding",
            "schema": {
              "type": "string",
              "example": "gzip, br"
            },
            "required": false,
            "description": "Supported compression encodings (gzip, br). Only applied when stream is false."
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ChatCompletionRequest"
              }
            }
          }
        }
      }
    }
  ],
  "origin": {
    "slug": "bk9jpt7z-nx-link",
    "host": "bk9jpt7z.nx.link",
    "url": "https://bk9jpt7z.nx.link"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/bk9jpt7z-nx-link-chat-completions",
    "url": "https://x402all.com/resource/bk9jpt7z-nx-link-chat-completions",
    "name": "Venice.ai \u00b7 Chat Completions",
    "@type": "WebAPI",
    "offers": {
      "url": "https://x402all.com/resource/bk9jpt7z-nx-link-chat-completions",
      "@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://bk9jpt7z.nx.link/chat/completions",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/bk9jpt7z-nx-link",
      "url": "https://bk9jpt7z.nx.link",
      "name": "bk9jpt7z.nx.link",
      "@type": "Organization"
    },
    "identifier": "bk9jpt7z-nx-link-chat-completions",
    "description": "Access Venice.ai LLM chat completions via x402. 0.01 USDC per call on Base network.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=bk9jpt7z-nx-link-chat-completions",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "ai"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=bk9jpt7z-nx-link-chat-completions"
}
