> ## Documentation Index
> Fetch the complete documentation index at: https://jigsaw-13.mintlify.app/llms.txt
> Use this file to discover all available pages before exploring further.

# All Models & APIs

> Complete reference guide to all models and APIs

## Core AI

| API                                                         | Description                                          |
| ----------------------------------------------------------- | ---------------------------------------------------- |
| [Sentiment Analysis](/docs/api-reference/ai/sentiment)      | Analyze text sentiment (positive, negative, neutral) |
| [Translation](/docs/api-reference/ai/translate)             | Translate text between languages                     |
| [Summary](/docs/api-reference/ai/summary)                   | Generate concise text summaries                      |
| [Time Series Prediction](/docs/api-reference/ai/prediction) | Forecast future values based on historical data      |
| [Text to SQL](/docs/api-reference/ai/text-to-sql)           | Convert natural language to SQL queries              |
| [Image Generation](/docs/api-reference/ai/image-generation) | Create images from text prompts                      |

## Web & Search

| API                                                | Description                                 |
| -------------------------------------------------- | ------------------------------------------- |
| [AI Web Scraper](/docs/api-reference/ai/scrape)    | Intelligent web scraping with AI extraction |
| [HTML to Any](/docs/api-reference/web/html-to-any) | Convert HTML to various formats             |
| [Web Search](/docs/api-reference/web/ai-search)    | AI-powered web search functionality         |

## Language Models

| API                               | Description                  |
| --------------------------------- | ---------------------------- |
| [Interfaze](https://interfaze.ai) | The LLM built for developers |

## Computer Vision

| API                                                         | Description                           |
| ----------------------------------------------------------- | ------------------------------------- |
| [vOCR](/docs/api-reference/ai/vocr)                         | Extract text from images              |
| [Object Detection](/docs/api-reference/ai/object-detection) | Identify and locate objects in images |

## Audio Processing

| API                                                     | Description                             |
| ------------------------------------------------------- | --------------------------------------- |
| [Speech to Text](/docs/api-reference/ai/speech-to-text) | Convert spoken language to written text |

## Content Validation

| API                                                       | Description                        |
| --------------------------------------------------------- | ---------------------------------- |
| [NSFW Detection](/docs/api-reference/validate/nsfw)       | Detect not safe for work content   |
| [Profanity Check](/docs/api-reference/validate/profanity) | Filter inappropriate language      |
| [Spell Check](/docs/api-reference/validate/spellcheck)    | Detect and correct spelling errors |
| [Spam Check](/docs/api-reference/ai/spam-check)           | Identify spam content              |

## File Management

| API                                            | Description                         |
| ---------------------------------------------- | ----------------------------------- |
| [File Storage](/docs/api-reference/store/file) | Store and manage files in the cloud |

## Getting Started

```javascript theme={null}
// 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 }
```

For detailed usage instructions, code examples, and response formats, click on any API link above.

## Need Help?

* Check our [quickstart guide](/docs/quick-start/node/introduction)
* Join our [Discord](https://jigsawstack.com/discord)
