Integrations - Anything

Documentation Index

Fetch the complete documentation index at: /docs/llms.txt

Use this file to discover all available pages before exploring further.

As we transition to our new builder integrations may be temporarily unavailable. We are working to improve their functionality and compatibility with the new system. If you have questions on specific integrations please email us at hello@anything.com. Thank you!

Anything offers 100+ built-in integrations (and growing!) to extend your apps. Build AI-powered features, generate PDFs, display maps, or enhance your UI with component libraries.

Missing an integration? Email us at hello@anything.com with your suggestion. Meanwhile, you can connect to any external API using our External API integration guide to add custom functionality to your app.

Adding integrations

Add integrations by:

You can add integrations to your Pages, Components, or Functions. When you add an integration, you’ll see a special chip in your chat. Anything adds the integration code to your page/component/function.

You need to include the integration in your prompt. You’ll know it’s referenced correctly if you see a chip in your chat.

Some integrations use credits to run. Learn more about Credits.

Using AI integrations

Build AI apps with our integrated models. Each integration comes with support out of box for:

Adding AI is simple - just use a slash command, describe how you want to use the AI, and Anything handles hooking it up to your app.

Streaming

By default, responses appear word-by-word as they’re generated, creating a real-time experience. This works great for chatbots and interactive experiences. If you prefer to show a loading spinner and display the complete response at once, simply tell Anything “don’t stream the response” in your prompt. This is useful for:

Prompting

Anything offers multiple ways to handle AI prompts:

  1. Basic Integration
    • Just include the AI integration (e.g. /[ChatGPT]) in your message
    • Anything will guess an optimal prompt based on your app’s context
  2. Custom Prompts
    • Specify exactly what you want: “Use / [ChatGPT] with prompt: ‘Analyze this text for tone’”
    • Control the exact behavior of the AI
  3. Dynamic Variables
    • Use [brackets] for dynamic values
    • Example: “Take in a subject line from the user. Then use / [ChatGPT] with prompt: ‘Generate a concise email for [subject line]’”
    • Anything handles all the code to pass variables to your prompts. You can chain multiple variables
  4. Prompt Optimization
    • Let Anything help: “Optimize the prompt for / [ChatGPT]. I want to [your goals]”
    • Anything will craft an effective prompt for your AI integration and include them in the code to call the integration

Structured Outputs

While AI typically returns raw text, you can request JSON responses for more structured data handling. Common Use Cases:

  1. Building UIs

    // Example: "Generate a recipe as JSON and show UI for each step"  
    {  
      "title": "Chocolate Cake",  
      "steps": [  
        {"step": 1, "instruction": "Preheat oven..."},  
        {"step": 2, "instruction": "Mix ingredients..."}  
      ]  
    }  
    
  2. Driving Logic

    // Example: "Analyze text sentiment as JSON"  
    {  
      "sentiment": "positive",  
      "score": 0.8,  
      "key_phrases": ["excellent service", "highly recommend"]  
    }  
    

Important Notes:

Integrations

AI Models

GPT-4 Vision

Analyze and understand images with AI. Example prompts:

AI Tools

Audio Transcription

Convert audio files to text. Example prompts:

Text-to-Speech

Convert text to natural-sounding speech. Example prompts:

Nano Banana

Generate images from text prompts. Supports custom aspect ratios (1:1, 2:3, 3:2) and resolutions up to 4K. Can also edit existing images by passing an input image with your prompt. Example prompts:

Markdown Renderer

Display AI-generated markdown content as formatted HTML/React elements. Example prompts:

UI & Design

Chakra UI

Design library with accessible, reusable components. Example prompts:

shadcn/ui

Modern component library with a clean design system. You can use the full library or specific components like Calendar, Dialog, or Select. Learn more at shadcn/ui docs. Example prompts:

Location & Maps

Google Maps

Add maps to your pages. Example prompts:

Google Business Data

Access business information and insights. Example prompts:

Utils

QR Code

Generate QR codes for links and data. Example prompts:

Data

Movies and TV Series

Search and get details about movies and TV shows. Example prompts:

Files

PDF Generation

Create and download PDFs programmatically. Example prompts:

PDF Parser

Convert PDF files to text. Example prompts:

Media

Charts

Create interactive charts and data visualizations. Example prompts:

Communication & Productivity

Resend

Send transactional emails with high deliverability rates. Example prompts:

You’ll need to set up your own Resend API key to use this integration in Anything.

Search & Discovery

Google Search

Access Google’s search results programmatically. Example prompts:

Google Image Search

Find and access images through Google’s image search. Example prompts:

Web & Data Processing

Web Scraper

Extract data from websites programmatically. Example prompts:

Development Tools

Code Runner

Execute code in multiple programming languages. Example prompts: