Skip to main content
GET
/
api
/
compliance
/
v1
/
entities
cURL
curl --request GET \
  --url https://grid.squads.xyz/api/compliance/v1/entities \
  --header 'Authorization: Bearer <token>' \
  --header 'x-grid-environment: <x-grid-environment>'
{
  "data": {
    "entities": [
      {
        "created_at": "2023-11-07T05:31:56Z",
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "type": "individual",
        "updated_at": "2023-11-07T05:31:56Z",
        "compliance_status": "<unknown>",
        "compliance_submission_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "email": "<string>",
        "external_id": "<string>"
      }
    ],
    "limit": 123,
    "offset": 123,
    "total": 123
  },
  "metadata": {
    "request_id": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Your Grid API key from the Grid Dashboard

Headers

x-grid-environment
string
required

Solana network environment (sandbox, devnet, mainnet)

Query Parameters

limit
integer<int64>

Number of entities to return (1-100, default 20)

offset
integer<int64>

Offset for pagination (default 0)

external_id
string

Filter by external ID

Response

List of entities

data
object
required
metadata
object
required