FALABIADeveloper Portal
Developer Login
Coming soon
Create App
Coming soon
For Developers

Falabia App Store

Make your app available for BIA to use when responding to customers. Reach thousands of e-commerce stores and increase your revenue.

Customer
I want to know about my delivery
B
BIA
Tracking App
Processing...
Request
{
  "method": "GET",
  "endpoint": "/tracking/12345"
}
Response
{
  "status": "in_transit",
  "eta": "2024-01-16T18:00"
}

How it works

With the Falabia Schema, your app becomes an intelligent tool that BIA can use during customer conversations.

1

Define your schema

Configure your API, methods, parameters, and instructions for AI using our exclusive format.

2

Publish your app

Submit for review and make available in our app store for thousands of stores.

3

BIA uses your app

When relevant, BIA automatically calls your API to fetch data or perform actions.

Why publish on Falabia?

Expand your reach

Your app becomes available to all BIA users instantly.

Increase revenue

Sell to our customer base and create new revenue streams.

Smart integration

Customers using both tools gain automatic AI integration.

Increase LTV

Users who integrate multiple tools have higher engagement and retention.

Full control via panel

Edit methods, routes, authentication, headers, and credentials easily.

Complete REST support

Support for GET, POST, PUT, DELETE, and all standard HTTP methods.

Ready to start?

Create your developer account and submit your first app.

Falabia App Schema

Define everything about your app in a single JSON. Methods, authentication, parameters, AI instructions, and more.

Hover over underlined properties to see instructions

{
"slug" : "troque-devolva",
"name" : "Troque e Devolva",
"description" : "Exchange and return management for e-commerce stores",
"longDescription" : "Complete solution for managing product exchanges and returns. Customers can request exchanges or returns, and store owners can approve or reject requests.",
"logo" : "https://www.troqueevolva.com.br/logo.png",
"website" : "https://www.troqueevolva.com.br",
"dashboardUrl" : "https://app.troqueevolva.com.br",
"translations" :
[
{
"locale" : "pt-BR",
"description" : "Gestao de trocas e devolucoes para lojas virtuais",
"longDescription" : "Solucao completa para gerenciar trocas e devolucoes de produtos. Clientes podem solicitar trocas ou devolucoes, e lojistas podem aprovar ou rejeitar."
}
,
{
"locale" : "es",
"description" : "Gestion de cambios y devoluciones para tiendas virtuales",
"longDescription" : "Solucion completa para gestionar cambios y devoluciones de productos."
}
]
,
"category" : "returns",
"pricing" :
{
"model" : "paid",
"hasExternalBilling" : true,
"externalPricingUrl" : "https://www.troqueevolva.com.br/precos"
}
,
"configSchema" :
{
"fields" :
[
{
"name" : "store_token",
"label" : "Store Token",
"type" : "password",
"required" : true,
"visible" : true,
"placeholder" : "abc123...",
"helpText" : "Token de autenticacao da loja. Encontre em Configuracoes > API no painel do Troque e Devolva."
}
]
}
,
"ai" :
{
"description" : "Manage exchange and return requests. Use when customer wants to return or exchange a product.",
"whenToUse" :
[
"Customer wants to return a product",
"Customer wants to exchange a product",
"Customer asks about return policy",
"Customer asks about exchange status"
]
,
"whenNotToUse" :
[
"Customer asks about order status (use e-commerce tools)",
"Customer asks about shipping (use tracking tools)",
"Customer asks about product details"
]
}
,
"api" :
{
"baseUrl" : "https://api.troqueevolva.com.br",
"testConnection" :
{
"endpoint" : "/store",
"httpMethod" : "GET",
"expectedStatus" : 200,
"headers" :
{
"store_token" : "{store_token}"
}
}
,
"endpoints" :
[
{
"name" : "searchRequests",
"description" : "Search exchange/return requests by order number or customer email",
"endpoint" : "/request/quick-search",
"httpMethod" : "GET",
"friendlyName" : "Search Requests",
"friendlyDescription" : "Search exchange/return requests by order number or email",
"translations" :
[
{
"locale" : "pt-BR",
"friendlyName" : "Buscar Solicitacoes",
"friendlyDescription" : "Busca solicitacoes de troca/devolucao por numero do pedido ou email"
}
]
,
"headers" :
{
"store_token" : "{store_token}"
}
,
"parameters" :
[
{
"name" : "data",
"in" : "query",
"type" : "string",
"required" : true,
"description" : "Search by order number or customer email",
"howToGet" : "Ask the customer for their order number or use their email from the conversation"
}
]
}
,
{
"name" : "getRequest",
"description" : "Get details of a specific exchange/return request by ID",
"endpoint" : "/request/{requestId}",
"httpMethod" : "GET",
"friendlyName" : "Get Request Details",
"friendlyDescription" : "Shows details of a specific exchange/return request",
"translations" :
[
{
"locale" : "pt-BR",
"friendlyName" : "Detalhes da Solicitacao",
"friendlyDescription" : "Mostra detalhes de uma solicitacao especifica"
}
]
,
"headers" :
{
"store_token" : "{store_token}"
}
,
"parameters" :
[
{
"name" : "requestId",
"in" : "path",
"type" : "string",
"required" : true,
"description" : "The request ID to look up",
"howToGet" : "Use the request ID from a previous search result"
}
]
}
]
}
,
"version" : "1.0.0",
"author" : "Troque e Devolva",
"supportEmail" : "[email protected]",
"documentationUrl" : "https://docs.troqueevolva.com.br"
}