Create bank link

Time Status User Agent
Make a request to see history.

URL Expired

The URL for this request expired after 30 days.

Bank link creation request

HTTP Status Codes

Example Request

curl --request POST \
     --url https://api.astrada.co/bank-links \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "filters": {
    "accountTypes": [
      "checking"
    ]
  }
}
'```

### Example Response

```json
{
  "_links": {
    "self": {
      "href": "/bank-links/enrollment_abc123"
    }
  },
  "id": "enrollment_abc123",
  "accountId": "8f3a1b2c-4d5e-6f7a-8b9c-0d1e2f3a4b5c",
  "subaccountId": "50cced63-ee4e-4ff7-a469-aaa989f220f2",
  "state": "pending",
  "hostedLink": "https://hosted.plaid.com/link/abc123",
  "linkExpiresAt": "2025-10-03T14:25:27.000Z",
  "createdAt": "2025-10-03T10:25:27.069Z"
}