Roboflow popular models - no key required

The page Models: Popular - Roboflow Inference

states:
We have defined IDs for common models for ease of use. These models do not require an API key for use unlike other public or private models.

Then provides some python script to run to inference on one of these models, no key required.
from inference import get_model
model = get_model(model_id=“yolov8n-640”)
results = model.infer(“https://media.roboflow.com/inference/people-walking.jpg”)

Is the same possible with a curl request?

Thank you :vulcan_salute:

You can deploy an API with Docker for use in running models: Running With Docker - Roboflow Inference.

Documentation on the API will be available at http://localhost:9001/docs, with information on the values you can send to each endpoint.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.