All the latest and greatest news and updates about Eden AI product.
New

Simplify Eden AI pricing and make it fairer

Taha avatar
Shared by Taha • January 14, 2025

We understand that our previous pricing model—a mix of subscriptions and credit purchases—was overly complicated. And honestly, we get it. It wasn’t the easiest to understand or project costs.

After trying several ways to simplify it, we realized there was no magic fix. So, we made a bold decision: we’re removing monthly subscriptions entirely.

Looking back, this change aligns perfectly with our vision of making AI accessible to as many companies as possible. How can AI be truly accessible if pricing makes it hard to predict costs?

Our goal is simple: cost should never stand in the way of adopting AI. Now, let’s talk about what this means for you.


Access to ALL Eden AI features

You now get full access to all Eden AI features, no matter the size of your team or how many API calls you make each month. Here’s what that looks like:

  • Unlimited seats: invite your entire team to collaborate on AI projects.
  • Unlimited workflows: build as many workflows as you need to cover all your use cases.
  • Unlimited executions: whether you make 10 or 10 million API calls, there’s no limit.
  • Bring your API keys: already have accounts with model providers? Use your keys to avoid buying credits. Don’t have accounts? You can simply buy credits through Eden AI.
  • Access to advanced features: bach processing & caching.

We believe in flexibility. Why pay for features you don’t use? With no subscriptions, you only pay for what you need, when you need it, with no commitments.


How do we make money?

Let’s address the obvious question: how do we stay viable without subscription revenue? The answer is simple: provider-side revenues.

If you don’t have API keys with model providers, you have to buy Eden AI credits to make API calls directly through us. Here’s why that works:

  • For you: costs stay the same as if you went directly to the provider. We don’t add any extra fees.
  • For us: thanks to the large volume of API calls made through Eden AI, we are able to negotiate better rates with AI vendors. This allows us to earn a margin on the discounted rates without increasing your costs.

A simpler future with Eden AI

This change goes beyond a simple pricing update. It’s a step toward creating a seamless, accessible AI platform that adapts to your needs. We’ve eliminated complexity so you can focus on what truly matters: building, innovating, and scaling with AI.

With unlimited access, transparent costs, and flexible usage, Eden AI is ready to grow with your company, no matter its size or goals.

We can’t wait to see what you’ll build next with Eden AI.

Thank you for your trust—it means a lot to our team.

Taha, CEO @Eden AI

New
Feature

Video generation API now available

Jérémy avatar
Shared by Jérémy • January 13, 2025

The video generation API is now available on Eden AI. Developers can now easily integrate video generation into their application or process.

Now you can…

  • Automate video generation directly from text or image input;
  • Integrate video creation into your existing workflows;

How to make API call

  1. You can use the API on its own, or combine it with other APIs by building a workflow;
  2. Test performance & cost of different providers/models with the live testing interface;
  3. Use code snippet and add custom parameters such as fallback_providers;

Code snippet:

import json
import requests

headers = {"Authorization": "api_key"}

url = "https://api.edenai.run/v2/video/generation_async"
payload = {"providers": "amazon", "text": "your prompt"}

response = requests.post(url, json=payload, headers=headers)

result = json.loads(response.text)
print(result)

Available models

  • Amazon Nova Reel: control visual style, rhythm and camera movements with natural language prompts.
  • Other models will be available soon.

API doc

Not a developer?

Use no-code platforms or app integrations to use the Eden AI API without writing a line of code.

Ready to get started? Try the video generation API today and unlock new AI capabilities!

Release notes

Release note 09/01/2025

Jérémy avatar
Shared by Jérémy • January 09, 2025

Hi there,

Happy New Year! 🎉 We're kicking off 2025 with exciting updates: video generation, the return of our powerful AI Model APIs, and even more collaborative workflow features. Let's make this year full of innovation!

New features and enhancements

New Feature: Video Generation

Introducing video generation! You can now create high-quality videos using AI. Craft compelling video content with ease, directly from Eden AI Workflows or as a standalone API feature.


AI Models APIs Are Back! 🎉

Over the past months, we’ve focused on improving Workflows to make it a powerful tool for crafting, orchestrating, and deploying complex AI processes.

But we know that sometimes, simplicity is key. If you’re looking for a single AI feature with the same streamlined experience Eden AI is known for, you’re in luck: our standardized, easy-to-implement APIs are back!

  • Live-test and use over 60+ AI features.
  • No monthly fees – only pay for what you use.

Rediscover the simplicity and power of Eden AI's APIs today!


Workflow Improvements

Web Scraper Node

Extract data from websites with the new Web Scraper Node. Whether for competitive analysis, content gathering, or data enrichment, this node allows you to use web scraping in your AI workflows.


Workflow Sharing

Collaboration made easy!

Team members within the same organization can now view and edit each other’s workflows. This feature is designed to boost productivity and streamline collaborative efforts on Eden AI.


Additional Updates

No More Monthly Licenses – Pay Per Use Only!

We’re simplifying pricing. With no upfront monthly fees, you now only pay for what you use. Whether you're exploring APIs or crafting workflows, you can scale with confidence and cost-effectiveness. 😃

Bug Fixes

  • Video Shot Detection interface
  • Chat Multimodal code snippet
  • TwelveLabs error
  • Alephalpha error
  • Base64 error
  • Photoroom error
  • LLM models on Document parsing features
  • Summarization API

We hope these updates enhance your experience with Eden AI and empower you to achieve more with our platform. Thank you for your continued support and feedback.

Do not hesitate to suggest ideas and features on our open roadmap!

Jérémy - The product guy

New
Feature

Introducing webhooks & web scrapers

Samy avatar
Shared by Samy • January 06, 2025

Web scrapers and webhooks are now available on Eden AI workflow.

These tools available on workflow nodes enabling you to streamline data acquisition and create more efficient, automated workflows.

Web scrapers

Effortlessly extract structured data from websites to integrate into your workflows:

  • Dynamic data extraction: specify target elements with URL and scrape real-time content from any website;
  • Seamless RAG integration: directly pipeline scraped data to RAG system;

Webhooks

Webhooks enable event-driven communication between Eden AI workflows and external systems:

  • Event triggers: activate workflows upon external events, such as data uploads or API responses;
  • Bidirectional integration: send or receive data via incoming and outgoing webhooks;
  • Third-party connectivity: easily connect external services;

Code snippet for workflow webhook:

import requests

headers = {"Authorization": "Bearer {api_key}"}

url = "https://api.edenai.run/v2/workflow/{workflow_id}/execution/"
files = {"video":open('/path/to/your/video.ext', 'rb')}
payload = {
"webhook_receiver": "https://webhook.site/fbfc569c-0cad-4e67-8c9f-019f78ab2ff7",
"users_webhook_parameters": {"something": "an_id"},
"send_webhook_data": true // this means to send full body or not
}
response = requests.post(url, files=files, data=payload, headers=headers)
result = response.json()

The addition of web scrapers and webhooks to Eden AI empowers developers with powerful tools for automating data workflows and enhancing AI integrations.

As always, feel free to reach out with feedback or questions. I’m here to help you make the most of Eden AI.

Samy, CTO @Eden AI

Release notes

Release note 12/12/2024

Jérémy avatar
Shared by Jérémy • December 12, 2024

Hi there,

Over the past week, we've been working on bringing back RAG on Eden AI and creating the Copilot that auomatically creates workflows for you!

New features and enhancements

New Image Generation provider: Leonardo

Access the amazing Image generation models from Leonardo.ai! You can test it here.

RAG Custom Chatbot

RAG is back on Eden AI in a new powerful, intuitive and complete interface. You will be able to create assistants and knowledge based chatbots using all the best LLM models of the market. Let’s create your AI Assistant or chatbot here.

Workflow improvement

Workflow Copilot

Prompt your project and let our copilot build the workflow for you. You can also describe your project and it suggests a list of nodes that would better fit your need and how to use them.

Workflow Webhooks

We now unlock webohooks on Workflow allowing users to use workflow for their user’s feature (optimizing response time).

Additional Updates

Models cost page

We heard your feedback about costs visibility and we developed a page where you can visualize the price of models for all AI features available on Eden AI. You can filter by technology and providers and can sort by cost to have a quick overview of the cheapest and most expensive models.

Reworked API Guide

We worked on a new version of the API Guide. You will now find all the information a developer is looking for. An efficient quick start, endpoints details, responses format, detalied errors, code example, etc.

Bug Fixes

  • Workflow object fields
  • Video QA async webhooks
  • Costs displayed in workflow
  • Max tokens parameter in workflow
  • “Replace node” issue on workflow

We hope these updates enhance your experience with Eden AI and empower you to achieve more with our platform. Thank you for your continued support and feedback.

Do not hesitate to suggest ideas and features on our open roadmap!

Jérémy - The product guy

Release notes

Release note 02/12/2024

Jérémy avatar
Shared by Jérémy • December 02, 2024

Hi there,

Over the past week, we've been working on improving the workflow experience to allow you to create amazing AI automation.

New features and enhancements

New API: Image Deepfake detection

We release a new feature that detects if an image is a deepfake or not, particularly useful to analyze faces. The provider available is SightEngine.

Workflow improvement

New Workflow Interface

You will now be able to directly test workflow templates with the Live Testing and API. We also cleaned up the interface, removing useless buttons and arranging optional functionalities.

Workflow documentation improved

We noticed that many workflow users have troubles using the API. Improving our doc, make it clearer and more friendly should help them implement the API.

Workflow SDK

We released our SDK yo enable developers to integrate their Eden AI workflows more quickly into their applications. You can now create workflows only with code.

Bug Fixes

  • Workflow documentation
  • Share workflow
  • Code snippets

Additional Updates

New Status Page

We released a new status page that accurately informs you when they are some troubles with the APIs. Access it here.

RAG

RAG will arrive on Workflow, stay tuned 🤙

Affiliate Program

You have a developer community and you love Eden AI. Share Eden AI with your community and earn commission on users consumption here.

We hope these updates enhance your experience with Eden AI and empower you to achieve more with our platform. Thank you for your continued support and feedback

Do not hesitate to suggest ideas and features on our open roadmap!

Jérémy - The product guy

Release notes

Release note 12/11/2024

Jérémy avatar
Shared by Jérémy • November 13, 2024

Hi there,

Over the past week, we've been working on improving the workflow experience to allow you to create amazing AI automation.

Workflow Improvements

Workflow execution cost detail

Now you can visualize the detailed price of each of your executions on workflow and the pricing of the provider you choose for each node in the builder.

Workflow & Template description

You can now add a description to your workflow to describe its function. A description is displayed for each Eden AI template to understand instantly what it does.

Bug fixes

  • IF node in execution
  • Duplicates in workflow doc
  • Code snippets with binary files
  • Share Workflow Live testing doesn't work
  • New executions display

We hope these updates enhance your experience with Eden AI and empower you to achieve more with our platform. Thank you for your continued support and feedback! 🙌💡

Do not hesitate to suggest ideas and features on our open roadmap!

Jérémy - The product guy

Release notes

Release note 14/10/2024

Jérémy avatar
Shared by Jérémy • October 18, 2024

Hi there,

Over the past week, we've been working on improving the workflow experience to allow you to create amazing AI automation.

🐞 New Features and Enhancements

Video Question Answering

Introducing a new API for Video Question Answering, now available with Google Gemini.


Workflow Enhancements

New Workflow Builder Interface

The workflow builder is now horizontal, unlocking the full power of creative workflow design. Key parameters are displayed directly within the workflow for quick configuration and easy visualization of node settings.

Tags for Template Filtering

We've added technology and business tags to help users filter and find the most relevant use cases quickly.

Improved Interface for Searching Workflow Features

The new interface is clearer, more visually appealing, and designed for greater efficiency.

Custom Node Naming

You can now rename nodes to provide relevant labels, helping you better understand and visualize your workflow functionalities.

Bug fixes:

  • Visual output of workflow bug
  • Replacing node option issue
  • Custom output bug

We hope these updates enhance your experience with Eden AI and empower you to achieve more with our platform. Thank you for your continued support and feedback! 🙌💡

Do not hesitate to suggest ideas and features on our open roadmap!

Jérémy - The product guy

Release notes

Release notes 09/08/2024

Jérémy avatar
Shared by Jérémy • August 09, 2024

I'm happy to share with you the latest news about our product.

New Features and Enhancements

New feature: Video shot change detection

Introducing video shot change detection. This feature automatically detects and marks changes in video scenes, enabling efficient video editing, content analysis, and organization. Only available through the API for the moment.

Easier model selection

Before, to select a specific model with the API, you had to add the “settings” parameter. It was tedious so we decided to offer you an easier alternative. Now you just need to write in parameter “providers”: “providers_name/model_name”.

Workflow Enhancements

Multimodal LLM

Multimodal LLM is finally coming on Workflow. This will unlocks tons of opportunities to create complex workflows by combining text, images, and other data types.

Code node

The new Code node allows users to execute custom JavaScript code within workflows. Whether you need to manipulate data, call external APIs, or perform complex calculations, the Code node provides the flexibility to customize workflows to your specific needs.

Follow execution steps on Live testing

You can now follow execution steps in real-time during Live testing. This enhancement provides a step-by-step view of the workflow as it runs, helping you identify issues, understand the flow of data, and optimize performance. Real-time insights ensure that debugging and refining workflows is a more intuitive and efficient process.

Share your workflow with your team

You can now share your workflows with your team members. This feature facilitates collaboration, allowing team members to view, test and edit your workflows, ensuring collective productivity and innovation.

Auto-saved input values for live testing

Input values for live testing are now auto-saved. This enhancement ensures that you can resume testing without losing progress, improving the overall testing and debugging experience.

We hope these updates enhance your experience with Eden AI and empower you to achieve more with our platform. Thank you for your continued support and feedback

Do not hesitate to suggest ideas and features on our open roadmap!

Jérémy - The product guy

Release notes

Release notes 29/07/2024

Jérémy avatar
Shared by Jérémy • July 31, 2024

I'm happy to share with you the latest news about our product.

AI features

New image embeddings providers

Only AlephAlpha was available on Eden AI for image embeddings. The very essence of Eden AI is the possibility to choose and switch between multiple accurate alternatives. We added Google and Bedrock image embeddings APIs to offer you a large and strong choice for this feature.

New document parser provider

  • New Financial Parser provider: Eagle Doc.
  • OpenAI is now available for document parsing APIs: Resume parser, Financial parser, ID parser.

Workflow enhancements

Live testing

A live testing link is now available in the sidebar parameters of each feature. This allows for quick execution of nodes to see real-time responses, making it easier to test and refine your workflows.

JSON output customization

You can now define your own JSON output in workflows, providing more control over the format and structure of the data generated by Eden AI.

By default, the JSON output returned is the response output of the last node of the workflow.

image

You can now choose any element of responses from any node of your workflow to return in the output just by created custom key and attributing these keys the values:

image

Dynamic input visibility

See inputs in execution more clearly with our updated interface. Dynamic inputs now displays the source node, making it easier to trace and understand data flow.

image

We hope these updates enhance your experience with Eden AI and empower you to achieve more with our platform. Thank you for your continued support and feedback

Do not hesitate to suggest ideas and features on our open roadmap!

Jérémy - The product guy