List active bidders indexed by the market registry.
Parameters
Output
Encoding
application/jsonbidders
array
Required
No description available.
cursor
string
Optional
No description available.
Errors
InvalidRequest
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "InvalidRequest"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"bidders"
],
"properties": {
"cursor": {
"type": "string"
},
"bidders": {
"type": "array",
"items": {
"ref": "#bidderItem",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"cursor": {
"type": "string"
},
"maxResults": {
"type": "integer",
"default": 50,
"maximum": 200,
"minimum": 1
},
"payloadNsid": {
"type": "string",
"format": "nsid"
}
}
},
"description": "List active bidders indexed by the market registry."
}