venice-api-overview

venice-api-overview is a skill for Claude Code, Codex from 0xatd/cheaptokens-skills. It costs 46 tokens per session (2,099 once invoked), scanned A, a copy of venice-api-overview, MIT.

A reference guide to Venice.ai's API, an OpenAI-compatible service for text, image, audio, video, and embedding models. It covers the API address, authentication, endpoint groups, responses, pricing, errors, and versions.

In plain words
What is it for?
Use it when starting a Venice integration or deciding between an API key and wallet-based payment.
Why use it?
It gives developers the basic map needed to choose an endpoint and authenticate a first Venice request.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when starting a Venice integration or deciding between an API key and wallet-based payment.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/0xatd/cheaptokens-skills/venice-api-overview
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add 0xatd/cheaptokens-skills --skill venice-api-overview
Clone the repo
git clone --depth 1 https://github.com/0xatd/cheaptokens-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for venice-api-overview

README.md
[![agentmods](https://agentmods.dev/badge/skills/0xatd/cheaptokens-skills/venice-api-overview/github.svg)](https://agentmods.dev/skills/0xatd/cheaptokens-skills/venice-api-overview)
Your own site
<a href="https://agentmods.dev/skills/0xatd/cheaptokens-skills/venice-api-overview"><img src="https://agentmods.dev/badge/skills/0xatd/cheaptokens-skills/venice-api-overview/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for venice-api-overview

Your own site · 80×15
<a href="https://agentmods.dev/skills/0xatd/cheaptokens-skills/venice-api-overview"><img src="https://agentmods.dev/badge/skills/0xatd/cheaptokens-skills/venice-api-overview.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,099 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 86% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00046 $0.02099
Opus 5 $0.00023 $0.01050
Sonnet 5 $0.00009 $0.00420
Haiku 4.5 $0.00005 $0.00210

Measured 10d ago against content hash e5c442fc69f2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

venice-api-overview scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl https://api.venice.ai/api/v1/models \
Origin

This is a copy

86% identical to venice-api-overview — 12 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/venice-api-overview/SKILL.md · 141 lines

How it starts

The opening of the file, as written. The whole thing — 141 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Venice API Overview

Venice.ai is an OpenAI-compatible inference platform for text, image, audio, video, and embeddings. One API — two ways to pay: a traditional API key (Pro account), or a wallet (x402, USDC on Base, no account required).

Use when

  • You're writing code against api.venice.ai for the first time.
  • You need to decide between API-key and x402/wallet authentication.
  • You want a quick map of which endpoint to call for which task.
  • You need to understand the common response headers (X-Balance-Remaining, PAYMENT-REQUIRED, etc.).

Base URL

All endpoints live under:

https://api.venice.ai/api/v1

The OpenAPI spec is distributed at outerface/swagger.yaml (current version 20260420.235001).

Authentication (pick one per request)

Scheme Header Best for
BearerAuth Authorization: Bearer <VENICE_API_KEY> Server-side apps, dashboards, usage analytics, bundled credits
siwx (x402) X-Sign-In-With-X: <base64 SIWE JSON> No account, pay-as-you-go with USDC on Base, serverless / agents

Every inference endpoint accepts either — see venice-auth.

# Bearer
curl https://api.venice.ai/api/v1/models \
  -H "Authorization: Bearer $VENICE_API_KEY"

# x402 / SIWE (one-liner via the SDK)
import { VeniceClient } from 'venice-x402-client'
const v = new VeniceClient(process.env.WALLET_KEY)
await v.models.list()

Endpoint map

Inference

Category Endpoints Skill
Chat POST /chat/completions venice-chat
Responses (Alpha) POST /responses venice-responses
Embeddings POST /embeddings venice-embeddings
Image gen POST /image/generate, POST /images/generations, GET /image/styles venice-image-generate
Image edit POST /image/edit, POST /image/multi-edit, POST /image/upscale, POST /image/background-remove venice-image-edit
TTS POST /audio/speech venice-audio-speech
STT POST /audio/transcriptions venice-audio-transcription
Music (async) POST /audio/quote, /audio/queue, /audio/retrieve, /audio/complete venice-audio-music
Video (async) POST /video/quote, /video/queue, /video/retrieve, /video/complete, /video/transcriptions venice-video

Read the full file on GitHub · 141 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 141 lines · 46 tokens per session scan A e5c442fc69f2

Subscribe to this mod's changes

venice-api-overview is a skill published in the GitHub repository 0xatd/cheaptokens-skills (2 stars, last pushed 1mo ago), licensed MIT. It adds 46 tokens to every session and 2,099 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 86% identical to venice-api-overview, differing in 12 lines, and is treated as a copy.

Related

Other skills, from other repositories

groq-inference

Ultra-fast LLM inference on custom LPU hardware. OpenAI-compatible API at api.groq.com. Lowest latency in the industry (500-1000+ tok/s). Supports chat completions, vision, audio (Whisper STT + TTS), tool calling, JSON mode, and streaming. Free tier available. Inference only — no training.

synthetic-sciences/openscience · 77 tokens

phone

Use when the user wants phone-number intelligence (lookup, carrier, line type, SIM-swap / call-forwarding fraud signals), US/CA number provisioning (rent a phone number), or outbound AI voice calls (Bland.ai under the hood — schedule, confirm, follow-up). Pay per call in USDC.

BlockRunAI/blockrun-mcp · 66 tokens

messari-x402

Access Messari's full API via x402 pay-per-request — no API key needed. Asset data, market metrics, signals, news, fundraising, token unlocks, on-chain networks, and AI chat, all paid with USDC on Base.

moonpay/skills · 55 tokens

t2000-env-gate

The cross-app env-validation contract — every app with ≥1 required env var validates at boot via a Zod schema and exposes values through a typed env proxy; raw process.env.X reads are banned outside the env module. Use when adding or renaming an environment variable, wiring up a new app in apps/, writing or reviewing…

mission69b/t2000 · 120 tokens

t2000-sui-platform

Sui platform patterns for throughput and gas — Address Balances (SIP-58) accumulators that let ONE address run concurrent txs, and gasless stablecoin transfers that remove the "you need SUI to send USDC" wall. Includes the eligibility gotchas that cause misleading failures (0.01 minimum, the dust-remainder floor…

mission69b/t2000 · 151 tokens

instagram-api

An Instagram API alternative on fetcher.sh — pay-per-call in USDC via x402, or prepaid credits with a Bearer key, no login and no session cookies. Use when the user wants to resolve an Instagram profile by @handle, search users by keyword, pull a profile's posts, reels, stories, tagged posts, followers, or followings…

sutchan/Agent-Skills-Hub · 153 tokens