Last updated at October 26, 2024 9:33 PM UTC
All API requests require authentication using a Bearer token in the Authorization header:
Authorization: Bearer your-token-here
Retrieves the logo from a specified website URL.
Endpoint: GET /api/get
Parameters:
Example Request:
curl -X GET \ 'https://logodog.dev/api/get?url=https://picqer.com' \ -H 'Authorization: Bearer your-token-here'
Success Response:
{ "success": true, "logo_url": "https://picqer.com/apple-touch-icon.png", "color": "#6B21FC", "remaining_requests": 5069 }
Response Fields:
The API includes a request quota system. Your remaining requests are returned in each successful response under the remaining_requests field. When you exceed your quota, the API will return a 403 Forbidden status code.