> ## Documentation Index
> Fetch the complete documentation index at: https://docs.malga.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Apr 15, 2026 - Konduto

> Novo provedor antifraude

export const AuthorProfile = ({author}) => <div className="flex flex-row gap-3 items-center">
    {author.image && <img src={author.image} className="w-10 h-10 rounded-full m-0" />}
    <div>
      <a href={author.url}>{author.name}</a>
      <br />
      <span>{author.title}</span>
    </div>
  </div>;

export const leandroaraujo = {
  name: "Leandro Araujo",
  title: "Software Engineer",
  url: "https://github.com/leandroaraujo-malga",
  image: "https://github.com/leandroaraujo-malga.png"
};

export const tiago = {
  name: "Tiago Aro",
  title: "Tech Lead",
  url: "https://github.com/tgaro",
  image: "https://github.com/tgaro.png"
};

<div className="flex flex-row gap-4">
  <AuthorProfile author={tiago} />

  <AuthorProfile author={leandroaraujo} />
</div>

Tem provedor antifraude novo na Malga! 🎉

A [Konduto](https://www.konduto.com) é uma solução de prevenção a fraudes voltada à análise de risco em transações online. Além de suportar operações **em tempo real** e **análises assíncronas**, também conta com aprendizado de máquina para avaliar o comportamento do comprador.

[Veja a documentação completa](/documentations/providers-antifraud/konduto)
