Retrieve CLABE Details

The GET /spei/v1/clabes/{clabe} method enables you to retrieve comprehensive information about a specific CLABE that belongs to your account.

To get the specifics of a CLABE, send the following HTTP request using the specified path parameter:

GET https://stage.buildwithjuno.com/spei/v1/clabes/{clabe}

Path Parameter

  • clabe: Identifies the CLABE whose details you want to know.

The following response object exemplifies the JSON object returned representing a CLABE:

{
    "success": true,
    "payload": {
        "clabe": "710969123456329002",
        "type": "AUTO_PAYMENT",
        "status": "ENABLED",
        "deposit_minimum_amount": null,
        "deposit_maximum_amounts": {
            "operation": null,
            "daily": null,
            "weekly": null,
            "monthly": null
        },
        "created_at": "2025-02-05T18:25:33",
        "updated_at": null
    }
}