Skip to content

Introduction

Monid lets your AI agent access data from anywhere on the web -- social media, reviews, product listings, and more. You or your agent calls Monid to discover data sources, check pricing, and retrieve results. You pay only for what you use.

What Does Monid Do?

  1. Discover what data endpoints are available for a given task
  2. Inspect an endpoint's input schema, pricing, and documentation
  3. Run the endpoint with structured input and retrieve results

Monid handles trust, payment, and fulfillment between your agent and data providers.

Supported Data Sources

Monid currently provides access to data from across the web, including:

  • X (Twitter) -- posts, profiles, search results
  • Reddit -- subreddits, posts, comments
  • TikTok -- videos, profiles, hashtags
  • LinkedIn -- company profiles, job listings, posts
  • Amazon -- product data, reviews, pricing
  • Google Reviews -- business reviews, ratings
  • Instagram -- posts, hashtags, profiles
  • And many more -- the endpoint catalog grows continuously

How to Use Monid

CLI

The Monid CLI lets you discover and run data endpoints from the terminal. Ideal for human developers and AI agents.

bash
monid discover -q "twitter posts"
monid inspect -p apify -e /apidojo/tweet-scraper
monid run -p apify -e /apidojo/tweet-scraper -i '{"searchTerms":["AI"],"maxItems":10}'

See the CLI Reference for the full command documentation.

HTTP API

Call the Monid API directly from your code or agent framework.

bash
curl -X POST https://api.monid.ai/v1/discover \
  -H "Authorization: Bearer <API Key>" \
  -H "Content-Type: application/json" \
  -d '{"query": "twitter posts", "limit": 5}'

See the API Reference for the full endpoint documentation.

Next Steps

The data layer for AI agents.