Skip to main content
GET
https://api.mor.org
/
api
/
v1
/
models
/
ratedbids
Get Rated Bids
curl --request GET \
  --url https://api.mor.org/api/v1/models/ratedbids \
  --header 'Authorization: <authorization>'
{
  "bids": [
    {
      "bid_id": "<string>",
      "provider": "<string>",
      "model_id": "<string>",
      "price_per_second": "<string>",
      "rating": 123,
      "total_sessions": 123,
      "availability": "<string>",
      "min_duration": 123,
      "max_duration": 123
    }
  ]
}
Get rated bids for a specific model. Connects to the proxy-router’s /blockchain/models/{id}/bids/rated endpoint. Returns all available provider bids for the model, sorted by rating and price.

Headers

Authorization
string
required
API key in format: Bearer sk-xxxxxx

Query Parameters

model_id
string
required
The blockchain ID (hex) of the model to get rated bids for, e.g., 0x1234...

Response

bids
array
Array of rated bid objects
Understanding Ratings: Provider ratings are calculated based on session success rate, response time, and user feedback. Higher-rated providers typically offer more reliable service.
Cost Calculation: To calculate the total session cost, multiply price_per_second by your desired session duration. For example, a 1-hour session (3600 seconds) at 0.000014 MOR/second would cost 0.0504 MOR.
Use the bid_id from this response when creating a session with /api/v1/session/bidsession to select a specific provider.