> For the complete documentation index, see [llms.txt](https://docs.barte.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.barte.com/api-reference/intermediador-de-pagamentos/financeiro/consultar-detalhes-de-repasse.md).

# Consultar Detalhes de Repasse

## Consultar detalhamento de repasse

> Retorna o discriminativo detalhado de todas as transações, taxas e ajustes que compõem o valor total transferido ao seller em uma data específica.

```json
{"openapi":"3.0.3","info":{"title":"Consulta de Composição de Repasses","version":"2.0.0"},"servers":[{"url":"https://api.barte.com","description":"Servidor de Produção"}],"paths":{"/v2/seller/{sellerId}/transfers/details":{"get":{"summary":"Consultar detalhamento de repasse","description":"Retorna o discriminativo detalhado de todas as transações, taxas e ajustes que compõem o valor total transferido ao seller em uma data específica.","tags":["Infraestrutura Financeira"],"parameters":[{"name":"sellerId","in":"path","description":"Identificador único do seller na plataforma.","required":true,"schema":{"type":"integer"}},{"name":"transferDate","in":"query","description":"Data de referência do repasse financeiro (YYYY-MM-DD).","required":true,"schema":{"type":"string"}},{"name":"x-token-api","in":"header","description":"Token de autenticação da aplicação.","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Dados do repasse recuperados com sucesso","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/TransferResponse"}}}}},"400":{"description":"Erro de validação nos parâmetros","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Credenciais inválidas ou ausentes","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"404":{"description":"Nenhum repasse localizado","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}},"components":{"schemas":{"TransferResponse":{"type":"object","properties":{"uuid":{"type":"string","description":"Identificador global único (UUID) do lote de transferência."},"total_amount":{"type":"string","description":"Valor líquido total efetivamente transferido."},"created_at":{"type":"string","description":"Carimbo de data/hora do processamento (YYYY-MM-DD HH:mm:ss)."},"transfer_details":{"type":"array","description":"Lista analítica dos lançamentos que compõem o saldo.","items":{"type":"object","properties":{"uuid_charge":{"type":"string","description":"UUID da cobrança ou transação original vinculada."},"type":{"type":"string","description":"Natureza do lançamento (ex: 'Taxa da Transação', 'Crédito de Venda')."},"amount":{"type":"string","description":"Valor monetário do item. Valores negativos representam débitos/taxas."},"description":{"type":"string","description":"Descrição identificadora do lançamento no extrato."}}}},"receipt_url":{"type":"string","description":"URL do comprovante detalhado do repasse."}}},"ErrorResponse":{"type":"object","properties":{"errors":{"type":"array","items":{"type":"object","properties":{"code":{"type":"string","description":"Código interno do erro para diagnóstico."},"title":{"type":"string","description":"Título legível do erro."},"description":{"type":"string","description":"Detalhamento técnico da causa do erro."}}}}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.barte.com/api-reference/intermediador-de-pagamentos/financeiro/consultar-detalhes-de-repasse.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
