Introduction
The Neurons are a set of pre-built Artificial Intelligence applets and models, that are ready-to-use and that you can plug-and-play from your existing systems, to enrich your data (real and synthetic), extract knowledge, take decisions, produce actionable insights, and create any kind of intelligent applications.
Create effective applications that can be (easily and quickly) embedded in business operations to drive strategic growth. Key benefits are streamlining processes, optimizing productivity, complying with data protection and security, identifying or predicting trends, enriching your knowledge with valuable information, making informed decisions with confidence, thus staying ahead of the competition.
How to use a Neuron¶
1. Go to the Neurons tab¶
Once there, select the AI Applet that interests you by clicking on the VIEW APPLET button. You can filter by industry and vendor to refine the results. If the AI Applet you want is not yet developed, contact us to make it possible. In these steps it's be useed the AI Transactions Enricher Applet to show how easy it is to have Dedomena Neurons at your service.

2. Access a specific AI Applet¶
When you select and access a AI Applet, it will take you to the Overview where a description, ML model type, expected performance of the model or input and output features/variables and data are provided.

If you click VIEW DETAILS for the input or output, an example of the expected type of data and structure will be displayed.

3. Suscribe to the AI Applet¶
In the Plans tab, you can suscribe to any of the plans to start using the Neuron depending on the expected volume and use or activate the Free Trial. When you click the FREE FOREVER button, you will get a few API calls and predictions quote every month for free to play and test. Not all Neurons have a Free Trial option. You can upgrade and downgrade the paid plans at any moment.

After you subscribe to a paid plan or the Free Trial, the API tab will be available.
Info
Contact us if you want an Enterprise plan tailored to your needs.
4. Go to the API tab¶
In the API tab you can copy and refresh the token used to authenticate to the AI Applet's API.

Info
If the Neuron has it's own user interface you can skip this part, Dedomena AI will handle the authentication for you, just start to get the maximum from the AI in few clicks. Refer to the Legal Mind documentation to see an example of a Neuron with UI.
If you click on API SWAGGER it will open the Swagger UI of the API. Clicking on API DOCUMENTATION in will open the API documentation associated with the AI Applet.

5. Enrich your data and get insights!¶
Here you will find two ways to play around with the API.
Directly using the Swagger
After clicking API SWAGGER button in the API tab, it will open the Swagger UI of the API.

To start using the API from this UI (user interface) just click on Try it out button and it will allow you to configure and execute the request.

Just select the region in the dropdown menu, enter your token that you can copy from the API tab, pass one or multiple transactions in the request body and click on the big Execute button.
Below you can find an example of multiple transactions:
[
{
"transaction_id": "txn-123",
"date": "2024-10-10",
"desc": "Compra Comercio SUPERMERCAT BON PREU S164",
"amt": "-40.45"
},
{
"transaction_id": "txn-456",
"date": "2024-12-09",
"desc": "Compra en Mercadona",
"amt": "-20.99"
}
]
If you continue scrolling down the Swagger UI, you'll see each response and what to expect.

See an example of how to use the API with Python.