JSONDecodeError when trying to use Roboflow Model with Webcam

Hey @Mila_Castillo

Our hosted inference API has two return formats, specified in the format query parameter: image and json, where JSON is the default.

In your query URL, you specify an image return format that returns an image (not readable JSON) with annotated predictions as a binary blob. If you’re looking for JSON, you should either remove the “&format=image” from your URL, which will make it default to JSON, or specify format=json.

Hope this helps