everythingstructured
v0.0.7
Published
Turn anything into structured data. One function.
Maintainers
Readme
Everything Structured
Turn anything into structured data. One function.
What is Everything Structured?
Everything Structured lets you turn any input into any output format with a single function call.
Hand it a URL, PDF, image, audio file, or plain text. Tell it what you want back. Get clean data.
No parsing. No prompt engineering. Just works.
Install
npm install everythingstructuredQuick Start
import structure from 'everythingstructured'
const result = await structure.run({
input: 'Sarah Chen, Senior PM at Acme. Email: [email protected]',
output: { name: 'string', title: 'string', email: 'string' }
})
// { name: "Sarah Chen", title: "Senior PM", email: "[email protected]" }Setup
Get your API key at everythingstructured.com/dashboard:
STRUCTURE_API_KEY=sk-xxxInputs and Outputs
Works with any input: text, URLs, PDFs, images, audio, video, JSON, CSV, DOCX, XLSX.
Returns whatever shape you define, or a preset like text, markdown, csv, json, or summary.
Docs
Visit everythingstructured.com/docs for the full API reference and examples.
