Logo Detection API — Identify Brand Logos in Images
Detect and recognize logos within images, providing brand identification with confidence scores and bounding coordinates. Ideal for brand monitoring, content analysis, and competitive intelligence.
Features
Brand Recognition
Identify logos of well-known brands and products within images for monitoring and analysis.
Confidence Scores
Each detected logo includes a confidence score to help you filter results by accuracy.
Bounding Polygons
Get precise polygon coordinates around each detected logo for overlay and visualization.
Flexible Input
Upload a file via multipart or pass a public image URL — both work seamlessly.
Fast Processing
Optimized cloud infrastructure delivers results in seconds with minimal latency.
Cloud-Based
No GPU or local setup needed. Fully managed cloud infrastructure handles the processing.
API Reference
1 endpoint, simple integration. Here's everything you need.
Supported Content Types
https://logos-detection.p.rapidapi.com/detect-logoDetect and identify logos in an image. Returns a list of recognized logos with descriptions, confidence scores, and bounding polygons.
imagefilerequiredImage file (JPEG, PNG, etc.) — use with multipart/form-data
urlstringrequiredPublic URL of the image to process — use with application/x-www-form-urlencoded
Send either image (file upload) or url (form-encoded), not both.
{
"statusCode": 200,
"body": {
"logos": [
{
"description": "Google",
"score": 0.95,
"boundingPoly": {
"vertices": [
{ "x": 10, "y": 20 },
{ "x": 150, "y": 20 },
{ "x": 150, "y": 80 },
{ "x": 10, "y": 80 }
]
}
}
]
}
}Response
Returns JSON with an array of detected logos, each containing a description (brand name), confidence score, and bounding polygon coordinates.
Quick Start
Copy-paste code to get started in seconds. Replace YOUR_API_KEY with your RapidAPI key.
# File upload
curl -X POST "https://logos-detection.p.rapidapi.com/detect-logo" \
-H "x-rapidapi-key: YOUR_API_KEY" \
-H "x-rapidapi-host: logos-detection.p.rapidapi.com" \
-F "image=@photo.jpg"
# URL input
curl -X POST "https://logos-detection.p.rapidapi.com/detect-logo" \
-H "x-rapidapi-key: YOUR_API_KEY" \
-H "x-rapidapi-host: logos-detection.p.rapidapi.com" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "url=https://example.com/photo.jpg"Pricing
Start free, scale as you grow. All plans include full API access with no credit card required for the free tier.
Basic
30 requests/mo
- Full API access
- All endpoints
- Standard support
Pro
5,000 requests/mo
- Full API access
- All endpoints
- Standard support
Ultra
10,000 requests/mo
- Full API access
- All endpoints
- Standard support
Mega
50,000 requests/mo
- Full API access
- All endpoints
- Standard support
Frequently Asked Questions
- What brands can the logo detection API recognize?
- The logo detection API recognizes logos of well-known brands and products across industries. It returns the brand name, a confidence score, and bounding polygon coordinates for each detected logo, making it suitable for brand monitoring, competitive intelligence, and content analysis.
- How can I use logo detection for brand monitoring?
- Upload user-generated images or social media content to the API, and it will identify any brand logos present. You can track where and how often your brand appears, monitor competitor logo placements, and analyze brand visibility across visual media at scale.
- Does the logo detection API return the position of each logo?
- Yes. Each detected logo includes bounding polygon coordinates with four vertices that outline the logo's exact position within the image. This allows you to draw overlays, crop logo regions, or measure logo size relative to the image.
Tutorials & Guides
Learn how to integrate this API with step-by-step tutorials and real-world use cases.
Start Using Logo Detection Today
Sign up on RapidAPI to get your API key. The free tier includes generous monthly requests — no credit card required.
