skills.vishalvoidskills/vishalvoid
Technical & DevelopmentIntermediate

venice-augment

Search, scraping, and text parsing endpoints

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/veniceai/skills --skill venice-augment

Overview

What This Skill Does

Search, scraping, and text parsing endpoints

Application

When to use this Skill

Documentation

Show Skills.md file

Venice Augment (text parse / scrape / search)

Three lightweight helpers for agent pipelines that need document text, web pages, or search results without spinning up your own crawler.

Endpoint Input Output Privacy
POST /augment/text-parser multipart/form-data file (PDF / DOCX / XLSX / plain text, ≤ 25 MB) { text, tokens } JSON or plain text In-memory only, zero retention
POST /augment/scrape { url } { url, content (markdown), format: "markdown" } Zero retention
POST /augment/search { query, limit?, search_provider? } { query, results: [{ title, url, content, date }] } Brave ZDR / Google anonymized; zero retention

All three accept Bearer API key or SIWE (x402 wallet). All three are priced dynamically ($0.001–$10.00).

POST /augment/text-parser — extract text from documents

Request

Always multipart/form-data:

Field Notes
file Required. PDF, DOCX, XLSX, or plain text. Max 25 MB.
response_format json (default) or text.
curl -X POST https://api.venice.ai/api/v1/augment/text-parser \
  -H "Authorization: Bearer $VENICE_API_KEY" \
  -F "file=@./contract.pdf" \
  -F "response_format=json"
Lines 1 - 29 of 153

Recommendations

Explore other random skills

All skillsMy patterns