YOLO v11

Real-time Object Detection

YOLO v11 is the latest version of the You Only Look Once object detection model. It can detect 80+ object classes in images and videos with state-of-the-art accuracy and speed.

Endpoint

POST https://api-gpuse.maatrics.com/v1/yolo-v11/detect

Parameters

NameTypeRequiredDescription
urlstringYesURL of the image or video file
confidencefloatNoMinimum confidence threshold (0-1, default: 0.5)
classesarrayNoFilter to specific object classes
webhookstringNoURL for completion notification

Detectable Objects

personbicyclecarmotorcycleairplanebustraintruckboattraffic lightfire hydrantstop signparking meterbenchbirdcatdoghorsesheepcowelephantbearzebragiraffe+56 more

Request Example

bash
curl -X POST "https://api-gpuse.maatrics.com/v1/yolo-v11/detect" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com/image.jpg",
    "confidence": 0.5,
    "classes": ["person", "car", "dog"],
    "webhook": "https://your-server.com/webhook"
  }'

Response

json
{
  "job_id": "yolo-123-456-789",
  "status": "processing",
  "created_at": "2024-01-15T10:30:00Z"
}

Completed Result

json
{
  "job_id": "yolo-123-456-789",
  "status": "completed",
  "result": {
    "detections": [
      {
        "class": "person",
        "confidence": 0.95,
        "bbox": {
          "x1": 100,
          "y1": 50,
          "x2": 300,
          "y2": 400
        }
      },
      {
        "class": "car",
        "confidence": 0.88,
        "bbox": {
          "x1": 400,
          "y1": 200,
          "x2": 700,
          "y2": 450
        }
      }
    ],
    "image_size": {
      "width": 1920,
      "height": 1080
    },
    "processing_time_ms": 45
  },
  "cost": 0.002
}

Pricing

$0.002per image

Video: $0.05 per minute (processed frame-by-frame)