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

# Service Providers

> Service provider data endpoints

Get data about service providers involved in RWA operations — including custodians, auditors, fund administrators, transfer agents, and others.

## GET /v4/service-providers

Returns a list of service providers with filtering, sorting, and pagination.

**Default sort:** `name` ascending | **Default page size:** 25

### Fields

| Field         | Type       | Filterable | Description                              |
| ------------- | ---------- | :--------: | ---------------------------------------- |
| `id`          | string     |     Yes    | Unique service provider identifier       |
| `name`        | string     |     Yes    | Provider name (searchable)               |
| `slug`        | string     |     Yes    | URL-friendly identifier (searchable)     |
| `description` | string     |     Yes    | Provider description (searchable)        |
| `network_ids` | integer\[] |     Yes    | IDs of networks the provider operates on |

### Example Request

```bash theme={null}
curl -G 'https://api.rwa.xyz/v4/service-providers' \
  -H "Authorization: Bearer $RWA_API_KEY" \
  --data-urlencode 'query={
    "sort": { "field": "name", "direction": "asc" },
    "pagination": { "page": 1, "perPage": 25 }
  }'
```

### Example Response

```json theme={null}
{
  "results": [
    {
      "id": 1,
      "name": "Anchorage Digital",
      "slug": "anchorage-digital",
      "description": "Anchorage Digital is a federally chartered digital asset bank.",
      "network_ids": [1, 5, 12]
    },
    {
      "id": 2,
      "name": "BitGo",
      "slug": "bitgo",
      "description": "BitGo provides institutional-grade custody and financial services for digital assets.",
      "network_ids": [1, 3, 5, 7]
    }
  ],
  "pagination": { "page": 1, "perPage": 25, "pageCount": 3, "resultCount": 68 }
}
```

## GET /v4/service-providers/meta

Returns [metadata](/api/meta) about available fields, filter operators, and select options for the service providers endpoint.

### Example Request

```bash theme={null}
curl -X GET "https://api.rwa.xyz/v4/service-providers/meta" \
  -H "Authorization: Bearer $RWA_API_KEY"
```
