Skip to main content
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

FieldTypeFilterableDescription
idstringYesUnique service provider identifier
namestringYesProvider name (searchable)
slugstringYesURL-friendly identifier (searchable)
descriptionstringYesProvider description (searchable)
network_idsinteger[]YesIDs of networks the provider operates on

Example Request

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

{
  "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 about available fields, filter operators, and select options for the service providers endpoint.

Example Request

curl -X GET "https://api.rwa.xyz/v4/service-providers/meta" \
  -H "Authorization: Bearer $RWA_API_KEY"