Pricing
You or your agent only pays for what you use. No subscriptions or enterprise contracts.
Pricing Models
Each endpoint is priced differently. You can view an endpoint's price using monid inspect or the POST /v1/inspect API.
There are two pricing models:
Per-Call
A flat fee per execution, regardless of how many results are returned.
json
{
"type": "PER_CALL",
"amount": 0.003,
"currency": "USD"
}For example, a Twitter search endpoint might cost $0.003 per call.
Per-Result
A fee per result item returned, with an optional flat base fee.
json
{
"type": "PER_RESULT",
"amount": 0.001,
"flatFee": 0.002,
"currency": "USD"
}For example, scraping product reviews at $0.001 per review plus a $0.002 base fee per call.
Viewing Prices
Prices are shown in three places:
- Discover results -- each endpoint includes its price
- Inspect details -- full pricing breakdown with notes
- Run response -- the actual cost charged for the execution
With the CLI
bash
monid discover -q "twitter posts"
# Price column shows per-endpoint pricing
monid inspect -p apify -e /apidojo/tweet-scraper
# Detailed pricing section with type, amount, and notesWith the API
The price field is included in discover, inspect, and run responses.
Next Steps
- CLI Run Reference -- Execute endpoints from the command line
- API Run Reference -- Execute endpoints via the API