> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tesouro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# sponsorBanks

> Retrieves the available sponsor banks for the given organization id.

`Query`

## Arguments

No arguments.

## Return type

`[SponsorBankOutput!]!`

<ResponseField name="bins" type="[SponsorBankBinsOutput!]!" required>
  The available sets of bins for the sponsor bank.

  <Expandable title="child attributes">
    <ResponseField name="descriptor" type="String!" required>
      The description of the set of bins for the sponsor bank.
    </ResponseField>

    <ResponseField name="id" type="UUID!" required>
      The unique identifier for the set of bins for the sponsor bank.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="name" type="String!" required>
  The name of the sponsor bank.
</ResponseField>

<ResponseField name="sponsorBankId" type="UUID!" required>
  The unique identifier for the sponsor bank.
</ResponseField>

<RequestExample>
  ```graphql Operation lines expandable theme={null}
  query SponsorBanks {
    sponsorBanks {
      bins {
        descriptor
        id
      }
      name
      sponsorBankId
    }
  }
  ```

  ```bash cURL lines expandable theme={null}
  curl --request POST \
    --url https://api.sandbox.com/graphql \
    --header 'Content-Type: application/json' \
    --header 'Authorization: Bearer <YOUR_ACCESS_TOKEN>' \
    --data '{
    "query": "query SponsorBanks {\n  sponsorBanks {\n    bins {\n      descriptor\n      id\n    }\n    name\n    sponsorBankId\n  }\n}"
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response lines expandable theme={null}
  {
    "data": {
      "sponsorBanks": {
        "bins": [
          {
            "descriptor": "example",
            "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
          }
        ],
        "name": "Ben Torres",
        "sponsorBankId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
      }
    }
  }
  ```
</ResponseExample>
