# FINTOC

Fintoc is a Chilean open banking provider. It uses a hosted widget where the user connects their bank account and authorizes the transfer. No required fields — the widget handles the flow.

**Country:** Chile | **Currency:** CLP | **Direction:** Pay-in

## Required fields

| Field             | Type     | Description                |
| ----------------- | -------- | -------------------------- |
| `type`            | `string` | Must be `"FINTOC"`         |
| `currency`        | `string` | Must be `"CLP"`            |
| `fintoc.customer` | `object` | Optional payer information |

## Example

```json
{
  "type": "FINTOC",
  "currency": "CLP",
  "fintoc": {
    "customer": {
      "firstName": "Diego",
      "email": "diego@example.com"
    }
  }
}
```

## Response fields

| Field   | Description                                |
| ------- | ------------------------------------------ |
| `url`   | Hosted widget URL — redirect the user here |
| `token` | Session token for tracking                 |

Send the user to `fintoc.url` to complete the bank connection and authorization.

## OpenAPI reference

* Spec: `conomyhq-api`
* Component: `fintoc`
* Source: [Payment API.yaml](https://raw.githubusercontent.com/conomyapp/gitbook-docs/main/.gitbook/assets/Payment%20API.yaml)


---

# Agent Instructions: 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:

```
GET https://developers.conomyhq.com/payments/origins-and-destinations/fintoc.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
