https://github.com/adepanges/fal_ai_pricing_tables
https://github.com/adepanges/fal_ai_pricing_tables
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/adepanges/fal_ai_pricing_tables
- Owner: adepanges
- Created: 2025-06-26T12:20:22.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-06-26T12:45:23.000Z (about 1 year ago)
- Last Synced: 2025-06-26T13:31:55.992Z (about 1 year ago)
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# π§ fal AI Model Pricing Table
A public, community-maintained table of pricing data for models available on [fal AI](https://fal.ai). Useful for developers, researchers, and AI builders who want to compare and calculate costs before using a model.
## π Whatβs Inside
This repository contains:
- A `fal_models` table schema (PostgreSQL)
- Clean tabular and structured data exports
- Utilities for filtering and comparing models based on:
- Unit price
- Use case (e.g., text-to-speech, image-to-video)
- Commercial-use allowance
## π Sample Fields
| Field | Description |
|---------------------------|-----------------------------------------------------------|
| `name` | Human-friendly model name |
| `code` | Unique model identifier on fal.ai |
| `description` | Short description of the model |
| `use_case` | Type of task the model performs (e.g., text-to-speech) |
| `unit_price` | Price amount (e.g., 0.06) |
| `unit_quantity` | Quantity the price covers (e.g., 1000) |
| `unit_label` | Unit of measurement (e.g., characters, tokens, seconds) |
| `price_details` | Full pricing detail as displayed on fal.ai |
| `is_allowed_commercial_use` | Whether itβs licensed for commercial use |
| `created_at` | When the data was crawled |
| `updated_at` | When the data was last updated |
## π§Ύ Example Record
```json
{
"name": "MiniMax Speech-02 Turbo",
"code": "fal-ai/minimax/speech-02-turbo",
"description": "Generate fast speech from text prompts and different voices using the MiniMax Speech-02 Turbo model.",
"use_case": "text-to-speech",
"unit_price": 0.06,
"unit_quantity": 1000,
"unit_label": "characters",
"price_details": "Your request will cost $0.06 per 1000 character.",
"is_allowed_commercial_use": true,
"created_at": "2025-06-01T00:00:00Z",
"updated_at": "2025-06-25T00:00:00Z"
}
```
## π¦ Files
- [fal_ai_models.csv](fal_ai_models.csv) β Clean tabular data for easy import
- [fal_ai_models.json](fal_ai_models.json) β Full data dump in JSON format
- [fal_ai_models.md](fal_ai_models.md) β Human-readable Markdown version of the model pricing table
- [fal_ai_models.html](fal_ai_models.html) β HTML version of the model pricing table
## π§βπ» Contributing
Feel free to submit:
- New model entries from fal.ai
- Fixes to outdated prices
- Suggestions for improvements
Pull requests are welcome!
---
**Note:** This project is not affiliated with fal.ai. All data is for research and personal use only.