Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Complete reference guide to all models and APIs
// Example: Using the Sentiment Analysis API import { JigsawStack } from "jigsawstack"; const jigsaw = JigsawStack({ apiKey: "your-api-key" }); const response = await jigsaw.sentiment({ text: "I love this product!", }); console.log(result); // Output: { sentiment: "positive", score: 0.92 }
Was this page helpful?