{"id":31810840,"url":"https://github.com/adepanges/fal_ai_pricing_tables","last_synced_at":"2026-02-27T10:01:55.937Z","repository":{"id":301360435,"uuid":"1008998710","full_name":"adepanges/fal_ai_pricing_tables","owner":"adepanges","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-26T12:45:23.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-26T13:31:55.992Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adepanges.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-26T12:20:22.000Z","updated_at":"2025-06-26T12:45:26.000Z","dependencies_parsed_at":"2025-06-26T13:43:39.082Z","dependency_job_id":null,"html_url":"https://github.com/adepanges/fal_ai_pricing_tables","commit_stats":null,"previous_names":["adepanges/fal_ai_pricing_tables"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/adepanges/fal_ai_pricing_tables","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adepanges%2Ffal_ai_pricing_tables","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adepanges%2Ffal_ai_pricing_tables/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adepanges%2Ffal_ai_pricing_tables/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adepanges%2Ffal_ai_pricing_tables/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adepanges","download_url":"https://codeload.github.com/adepanges/fal_ai_pricing_tables/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adepanges%2Ffal_ai_pricing_tables/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279006450,"owners_count":26084107,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-11T06:17:10.056Z","updated_at":"2025-10-11T06:17:13.502Z","avatar_url":"https://github.com/adepanges.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧠 fal AI Model Pricing Table\n\nA 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.\n\n## 📊 What’s Inside\n\nThis repository contains:\n- A `fal_models` table schema (PostgreSQL)\n- Clean tabular and structured data exports\n- Utilities for filtering and comparing models based on:\n  - Unit price\n  - Use case (e.g., text-to-speech, image-to-video)\n  - Commercial-use allowance\n\n## 🗂 Sample Fields\n\n| Field                     | Description                                               |\n|---------------------------|-----------------------------------------------------------|\n| `name`                   | Human-friendly model name                                  |\n| `code`                   | Unique model identifier on fal.ai                         |\n| `description`            | Short description of the model                            |\n| `use_case`               | Type of task the model performs (e.g., text-to-speech)    |\n| `unit_price`             | Price amount (e.g., 0.06)                                  |\n| `unit_quantity`          | Quantity the price covers (e.g., 1000)                     |\n| `unit_label`             | Unit of measurement (e.g., characters, tokens, seconds)    |\n| `price_details`          | Full pricing detail as displayed on fal.ai                |\n| `is_allowed_commercial_use` | Whether it’s licensed for commercial use             |\n| `created_at`             | When the data was crawled                                  |\n| `updated_at`             | When the data was last updated                             |\n\n## 🧾 Example Record\n\n```json\n{\n  \"name\": \"MiniMax Speech-02 Turbo\",\n  \"code\": \"fal-ai/minimax/speech-02-turbo\",\n  \"description\": \"Generate fast speech from text prompts and different voices using the MiniMax Speech-02 Turbo model.\",\n  \"use_case\": \"text-to-speech\",\n  \"unit_price\": 0.06,\n  \"unit_quantity\": 1000,\n  \"unit_label\": \"characters\",\n  \"price_details\": \"Your request will cost $0.06 per 1000 character.\",\n  \"is_allowed_commercial_use\": true,\n  \"created_at\": \"2025-06-01T00:00:00Z\",\n  \"updated_at\": \"2025-06-25T00:00:00Z\"\n}\n```\n\n## 📦 Files\n\n- [fal_ai_models.csv](fal_ai_models.csv) – Clean tabular data for easy import\n- [fal_ai_models.json](fal_ai_models.json) – Full data dump in JSON format\n- [fal_ai_models.md](fal_ai_models.md) – Human-readable Markdown version of the model pricing table\n- [fal_ai_models.html](fal_ai_models.html) – HTML version of the model pricing table\n\n## 🧑‍💻 Contributing\n\nFeel free to submit:\n- New model entries from fal.ai\n- Fixes to outdated prices\n- Suggestions for improvements\n\nPull requests are welcome!\n\n---\n\n**Note:** This project is not affiliated with fal.ai. All data is for research and personal use only.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadepanges%2Ffal_ai_pricing_tables","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadepanges%2Ffal_ai_pricing_tables","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadepanges%2Ffal_ai_pricing_tables/lists"}