# Taksit Listeleme

Ödeme işlemine başlamadan önce taksit bilgisini almanız gerekmektedir.

{% hint style="warning" %}
**Önemli:** Bu servisi kullanabilmek için geçerli bir **API Key** bilgisine sahip olmanız gerekir. API Key temini ve yetkilendirme süreci hakkında detaylı bilgi için **“**[**Nasıl Erişirim?**](/postapos-api/nasil-erisirim.md)**”** sayfasını inceleyebilirsiniz.
{% endhint %}

Servis Url Adresi:

{% hint style="success" %}
<https://api.postapos.com/v2/**installments>\*\*
{% endhint %}

**Servis Açıklaması**

Bu servis, gönderilen kart bilgisi ve işlem tutarına göre kullanılabilir taksit seçeneklerinin listelenmesini sağlar.

Taksit seçeneklerinin başarıyla döndürülebilmesi için, istekte belirtilen zorunlu parametrelerin **API Key** ile birlikte eksiksiz olarak iletilmesi gerekmektedir. Sağlanan **BIN** numarasına karşılık gelen uygun taksit alternatifleri servis yanıtında listelenir.

{% tabs %}
{% tab title="Servis Paremetreleri" %}

| Adı          | Tipi    | Zorunlu | Açıklama                                |
| ------------ | ------- | ------- | --------------------------------------- |
| bin          | int     | Evet    | Kart bin numarası ilk 6 hanesi          |
| commission   | int     | Evet    | Komisyon hizmeti (1- hariç) / (2-dahil) |
| amount       | decimal | Evet    | Tutar (1500.00-1500.60) formatına uygun |
| {% endtab %} |         |         |                                         |

{% tab title="Request" %}

```php
{
    "bin" : 526911,
    "commission" : false,
    "amount":"1500"
}
```

{% endtab %}

{% tab title="Response" %}

```php
{
    "status": 200,
    "cardInfo": {
        "binNumber": 526911,
        "issuerBank": "FİNANS BANK A.Ş.",
        "brand": "MasterCard",
        "programType": "CardFinans",
        "cardImage": "files/vYZzO3WiyC89zoxum8pcC56xO",
        "cardCompany": 1,
        "cardType": "creditcard"
    },
    "result": [
        {
            "pos_id": "CU04074*******",
            "ins_id": 259512,
            "installment": 1,
            "ek_installment": 0,
            "commission": "0.00",
            "commission_price": "0,00",
            "price": "1.500,00"
        },
        {
            "pos_id": "CU04074*******",
            "ins_id": 259611,
            "installment": 2,
            "ek_installment": 0,
            "commission": "0.00",
            "commission_price": "0,00",
            "price": "1.500,00"
        },
        {
            "pos_id": "CU04074*******",
            "ins_id": 259723,
            "installment": 3,
            "ek_installment": 0,
            "commission": "0.00",
            "commission_price": "0,00",
            "price": "1.500,00"
        }
    ]
}
```

{% endtab %}
{% endtabs %}


---

# 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://postapos.gitbook.io/postapos-api/api/taksit-listeleme.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.
