entities
Get entities with filtering
Retrieve entities with optional filtering and pagination
get/api/v1/entities
Query parameters
searchstring
Example:validator
Search by entity name (partial match)
organizationstring
Example:Acme Validator LLC
Filter by organization
sortBy'createdAt' | 'name' | 'email' | 'totalBids' | 'successRate'
Sort field
sortOrder'asc' | 'desc'
Sort order
limitnumber
Example:20
Number of items per page
offsetnumber
Page offset (0-based)
Response
List of entities
Example response
[
{
"id": "ent_1234567890abcdef",
"name": "Acme Validator",
"email": "contact@acme-validator.com",
"organization": "Acme Validator LLC",
"website": "https://acme-validator.com",
"status": "active",
"createdAt": "2024-01-01T00:00:00.000Z",
"updatedAt": "2024-01-01T00:00:00.000Z",
"lastActivityAt": "2024-01-01T12:30:00.000Z",
"metadata": {
"region": "US-East",
"validatorType": "professional",
"tier": "premium"
},
"totalBids": 1250,
"successfulBids": 425,
"successRate": 0.34,
"activeApiKeys": 3,
"rateLimitUsage": 65.5,
"isActive": true,
"hasApiKeys": true,
"verificationStatus": "verified"
}
]