Rimble support on the parlay/odds endpoint.

If your API Key is enabled for Rimble then you can now make use of their SGP engine using our /parlay/odds endpoint.

curl --location 'https://api.opticodds.com/api/v3/parlay/odds' \
--header 'Content-Type: application/json' \
--data '{
    "sportsbooks": ["rimble"],
    "entries": [
        {
            "fixture_id": "202508171A366CA0",
            "market": "Moneyline",
            "name": "Team Vitality"
        },
        {
            "fixture_id": "202508171A366CA0",
            "market": "Total Maps",
            "name": "Over 2.5"
        }
    ]
}'
{
    "data": {
        "rimble": {
            "error": null,
            "missing_entries": null,
            "legs": [
                {
                    "fixture_id": "202508171A366CA0",
                    "market": "Moneyline",
                    "name": "Team Vitality",
                    "price": -299.0
                },
                {
                    "fixture_id": "202508171A366CA0",
                    "market": "Total Maps",
                    "name": "Over 2.5",
                    "price": 101.0
                }
            ],
            "price": 157.0,
            "deep_link_urls": null
        }
    }
}