# Delta
source: https://developer.mastercard.com/bin-lookup/documentation/use-cases/delta/index.md

## Get Changed Account Ranges {#get-changed-account-ranges}

The Delta API allows our partners to retrieve all account ranges that have changed between a **specified date in last 7 days** and Today. Each day, the /bin-ranges API assigns a unique Id to the published account range list. This id can be found in the response metadata of the API. When this unique ID is provided to the Delta API as from_snapshot_Id, developers can obtain only the account ranges that have changed since the ID was issued.

### Request {#request}

**GET** {{baseurl}}/bin-ranges/deltas/snapshots/5402?page=1\&size=20

### Response {#response}

```json
{
  "id": 5408,
  "createdDate": "2025-08-14T15:45:04.515729Z",
  "fromSnapshotId": 5402,
  "toSnapshotId": 5403,
  "currentPageNumber": 1,
  "currentPageSize": 20,
  "totalPages": 10,
  "totalItems": 197,
  "items": [
   {
      "lowAccountRange": 2232092000000000000,
      "highAccountRange": 2232092099999999999,
      "binNum": "22320920",
      "binLength": 8,
      "acceptanceBrand": "PVL",
      "ica": "00000001102",
      "customerName": "PRIVATE LABEL TRADE PROGRAM",
      "smartDataEnabled": false,
      "country": {
        "code": 604,
        "alpha3": "PER",
        "name": "Peru"
      },
      "localUse": false,
      "authorizationOnly": false,
      "productCode": "MPG",
      "productDescription": "MASTERCARD PREPAID GENERAL SPEND",
      "governmentRange": false,
      "nonReloadableIndicator": false,
      "anonymousPrepaidIndicator": "U",
      "cardholderCurrencyIndicator": "D",
      "billingCurrencyDefault": "EUR",
      "comboCardIndicator": "N",
      "flexCardIndicator": "N",
      "fasterFundsIndicator": "N",
      "moneySendIndicator": "N",
      "gamblingBlockEnabled": false,
      "programName": "UNAVAILABLE",
      "vertical": "UNAVAILABLE",
      "fundingSource": "PREPAID",
      "consumerType": "CONSUMER",
      "affiliate": "UNAVAILABLE",
      "paymentAccountType": "P",
      "mastercardOneParticipationIndicator": "Y",
      "operation": "U"
    }
    ...
  ]
}
```

## Next Steps {#next-steps}

* View the full Open API specification [here](https://developer.mastercard.com/bin-lookup/documentation/api-section/api-reference/index.md).
* Review the API's error responses [here](https://developer.mastercard.com/bin-lookup/documentation/code-and-formats/index.md).
