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