Operators
Operators represent key entities that interact with the Pareto protocol. These can be protocol partners, borrowers, or curators responsible for deploying or managing vaults.
Structure
Each operator object includes:
_id(string) — Unique identifiername(string) — Name of the operatorcode(string) — Unique internal codetype(string) — One of:PROTOCOL,BORROWER,CURATORdescription(object) — Multilingual description (e.g.{ en: "This is a protocol operator" })shortDescription(object) — Short version of the descriptioncaption(object) — Promotional captionrating(string) — Internal rating indicatorlocation(string) — Geographic referencelinks(object) —website(string)twitter(string)linkedIn(string)crunchbase(string)
createdAt,updatedAt(string) — ISO timestamps (UTC Unix time)createdBy,updatedBy(string) — Actor IDs for auditing
Endpoints
A list of operators
GET /v1/operators HTTP/1.1
Host: api.pareto.credit
Accept: */*
A list of operators
{
"data": [
{
"_id": "text",
"name": "text",
"description": "text",
"image": "text",
"vaults": [
"text"
],
"createdAt": "2025-12-07T06:59:54.872Z",
"updatedAt": "2025-12-07T06:59:54.872Z",
"createdBy": "text",
"updatedBy": "text"
}
],
"totalCount": 1
}Operator details
GET /v1/operators/{operatorId} HTTP/1.1
Host: api.pareto.credit
Accept: */*
Operator details
{
"_id": "text",
"name": "text",
"description": "text",
"image": "text",
"vaults": [
"text"
],
"createdAt": "2025-12-07T06:59:54.872Z",
"updatedAt": "2025-12-07T06:59:54.872Z",
"createdBy": "text",
"updatedBy": "text"
}Last updated

