O primeiro benchmark aberto para medir a precisão de extração de extratos bancários. 15 extratos sintéticos, 36 desafios de análise, 12 países, em 3 níveis de dificuldade.
Comece em três passos.
curl -O https://bankstatemently.com/benchmark/statements/bsb-001-statement.pdf
your-parser bsb-001-statement.pdf > result.jsonHASH=$(shasum -a 256 bsb-001-statement.pdf | cut -d' ' -f1)
curl -X POST https://api.bankstatemently.com/v1/benchmark/evaluate \
-H "Content-Type: application/json" \
-H "X-API-Key: your-api-key" \
-d "{\"contentHash\": \"$HASH\", \"transactions\": $(cat result.json)}"Extratos bancários reais contêm dezenas de peculiaridades de formatação que quebram parsers ingênuos.
Statements omit the year from transaction dates (e.g., "03/15" instead of "03/15/2025"), which makes it impossible to sort or reconcile without guessing.
Em 4 extratosStatements only print the date on the first transaction of each day — the rest have blank date cells.
Em 1 extratoStatements place the plus or minus sign after the amount (e.g., "123.45-" instead of "-123.45").
Em 1 extratoStatements embed currency symbols (e.g., "$1,234.56") directly in amount cells, which breaks numeric parsing in Excel and most CSV importers.
Em 2 extratosStatements sometimes lack clear row or column lines.
Em 1 extratoStatements use separate Credit and Debit columns in some formats, while others use a single Amount column with signs.
Em 10 extratosPage headers and footers contain bank logos, page numbers, and disclaimers that can interfere with transaction extraction.
Em 1 extratoStatements are often image-based PDFs with no selectable text, so copy-paste and standard PDF extractors return nothing useful.
Em 3 extratosbsb-001 (Straits Capital (Singapore)) foi reemitido em 2026-08-11. Reissued to fix a benchmark-generator reproducibility bug (non-deterministic PDF metadata: creation date, embedded font-subset tags, image object ordering). Printed content and every ground-truth answer are unchanged. sha256 do PDF original: 7f96da7316b2b540f2f8ecfc4151cd242a501be3ed84204a15bfbbe3c355531b. Substituído por: 8a5b0e296d5d9ffaccfe6e8d99e0b52f7f60db76db54132c8c9ce6b8cbd52720. O conteúdo não mudou — análises ou pontuações obtidas com o PDF original continuam válidas, mas estavam indexadas por um hash substituído. Reindexe em vez de reanalisar.
bsb-002 (Liberty National (United States)) foi reemitido em 2026-08-11. Reissued to fix a benchmark-generator reproducibility bug (non-deterministic PDF metadata: creation date, embedded font-subset tags, image object ordering). Printed content and every ground-truth answer are unchanged. sha256 do PDF original: f9947911a399ff0ccb7e8afde6e3380e3f7a1f61a5809b68022ce0b9ba449b06. Substituído por: 7632b2a50b3ab172e18f03ea110241660c220a4ef738bbfb683eba4cccbbc324. O conteúdo não mudou — análises ou pontuações obtidas com o PDF original continuam válidas, mas estavam indexadas por um hash substituído. Reindexe em vez de reanalisar.
bsb-003 (Continental Trust (Netherlands)) foi reemitido em 2026-08-11. Reissued to fix a benchmark-generator reproducibility bug (non-deterministic PDF metadata: creation date, embedded font-subset tags, image object ordering). Printed content and every ground-truth answer are unchanged. sha256 do PDF original: d605ff5e2c803f531c18d295354f135017c56082538f41e53d6c37452604a566. Substituído por: 4bad73296bdbcf7142b62c8af421527f88d1d3a6865617e9fea48e6f51c704a1. O conteúdo não mudou — análises ou pontuações obtidas com o PDF original continuam válidas, mas estavam indexadas por um hash substituído. Reindexe em vez de reanalisar.
bsb-004 (Silk Road Banking (Hong Kong)) foi reemitido em 2026-08-07. Reissued to correct errors in the original statement. The second account is now denominated in USD, with a disclosed FX rate. sha256 do PDF original: e93cacdb23195adefdf13ef4ba9528f55454c6fb2dc83624fe9c5077c5bc6455. Substituído por: 522f8c9c92cb567580ffca4ac5ff9d4caea7d831764671de0ab8ae0878e513c2. Análises ou pontuações obtidas com o PDF original não são comparáveis. Reanalise o PDF reemitido.
bsb-004 (Silk Road Banking (Hong Kong)) foi reemitido em 2026-08-11. Reissued to fix the same generator reproducibility bug as the other released statements, plus a generator fix to how ground-truth account identity is derived: the account name no longer bakes in the account number, which lets a parser that correctly componentizes the printed heading exact-match cross-engine. Printed content (including the heading) is unchanged. sha256 do PDF original: 522f8c9c92cb567580ffca4ac5ff9d4caea7d831764671de0ab8ae0878e513c2. Substituído por: 0a4201b0e1a9c9ed834a2dce898a97ef8bac2b959ae6e3eb041c59328e0b19d1. O conteúdo não mudou — análises ou pontuações obtidas com o PDF original continuam válidas, mas estavam indexadas por um hash substituído. Reindexe em vez de reanalisar.
bsb-005 (Harbour Bank (Canada)) foi reemitido em 2026-08-11. Reissued to fix a benchmark-generator reproducibility bug (non-deterministic PDF metadata: creation date, embedded font-subset tags, image object ordering). Printed content and every ground-truth answer are unchanged. sha256 do PDF original: 01a26c767b9488e45b358b329e2c9ea3d9fba05878a1963da06fde899827debb. Substituído por: 8919aa5abdb06d377898e5cc78751661fcc80a25a89a477af49ceb0f0d7fe143. O conteúdo não mudou — análises ou pontuações obtidas com o PDF original continuam válidas, mas estavam indexadas por um hash substituído. Reindexe em vez de reanalisar.
Sua pontuação é medida em duas dimensões — o mesmo framework que usamos para testar de forma independente conversores comerciais.
Comparação campo a campo de datas, valores, descrições e saldos com os dados de referência.
Conciliação de saldos, validação de totais e alinhamento em nível de linha em todo o extrato.
Baixe o conjunto de dados, integre a API de avaliação e faça o benchmark do seu parser.