Skip to main content
GET
/
v1
/
externalEntities
Get all external entities
curl --request GET \
  --url https://api-sandbox.circle.com/v1/externalEntities \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "walletId": "212000",
      "businessName": "Circle Internet Financial Inc.",
      "businessUniqueIdentifier": "1234567890",
      "identifierIssuingCountryCode": "US",
      "complianceState": "PENDING"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

businessUniqueIdentifier
string

The unique identifier of the business. For example, a company number or tax ID.

identifierIssuingCountryCode
string

The country code of the issuing authority. Formatted as a two-letter country code specified in ISO 3166-1 alpha-2.

Response

200 - application/json

Successfully retrieved a list of external entities.

data
object[]