{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/worldvectorlogo.com"
        }
    ],
    "info": {
        "name": "Worldvectorlogo API",
        "_postman_id": "4f6adc5f-aa8d-4d34-b1e2-a80a4eb2b18c",
        "description": "Programmatic access to thousands of professionally curated vector logos in SVG format.",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Logo",
            "description": "\nBrowse, search, and retrieve vector logos.",
            "item": [
                {
                    "name": "List all logos.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/logos",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "20",
                                    "description": "Results per page (1-50).",
                                    "disabled": false
                                },
                                {
                                    "key": "sort",
                                    "value": "downloads",
                                    "description": "Sort field: downloads, created.",
                                    "disabled": false
                                },
                                {
                                    "key": "order",
                                    "value": "desc",
                                    "description": "Sort direction: asc, desc.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/logos?page=1&per_page=20&sort=downloads&order=desc"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page\":1,\"per_page\":22,\"sort\":\"downloads\",\"order\":\"asc\"}"
                        },
                        "description": "Browse all published logos with optional sorting.\nResults are paginated with a default of 20 per page.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"google-2015\",\"name\":\"Google 2015\",\"downloads\":48230,\"svg_url\":\"https:\/\/cdn.worldvectorlogo.com\/logos\/google-2015.svg\",\"tags\":[\"technology\",\"search-engine\"],\"created_at\":\"2024-01-15T10:30:00+00:00\",\"updated_at\":\"2024-06-20T14:15:00+00:00\",\"links\":{\"self\":\"https:\/\/worldvectorlogo.com\/api\/v1\/logos\/google-2015\",\"web\":\"https:\/\/worldvectorlogo.com\/logo\/google-2015\"}}],\"links\":{\"first\":\"https:\/\/worldvectorlogo.com\/api\/v1\/logos?page=1\",\"last\":\"https:\/\/worldvectorlogo.com\/api\/v1\/logos?page=100\",\"prev\":null,\"next\":\"https:\/\/worldvectorlogo.com\/api\/v1\/logos?page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":100,\"per_page\":20,\"to\":20,\"total\":2000}}",
                            "name": "Success"
                        }
                    ]
                },
                {
                    "name": "Search logos by name.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/logos\/search",
                            "query": [
                                {
                                    "key": "q",
                                    "value": "google",
                                    "description": "Search query.",
                                    "disabled": false
                                },
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "20",
                                    "description": "Results per page (1-50).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/logos\/search?q=google&page=1&per_page=20"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"q\":\"b\",\"page\":22,\"per_page\":7}"
                        },
                        "description": "Search across logo names and slugs using a query string.\nResults are ordered by download count (most popular first).",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"google-2015\",\"name\":\"Google 2015\",\"downloads\":48230,\"svg_url\":\"https:\/\/cdn.worldvectorlogo.com\/logos\/google-2015.svg\",\"tags\":[\"technology\",\"search-engine\"],\"created_at\":\"2024-01-15T10:30:00+00:00\",\"updated_at\":\"2024-06-20T14:15:00+00:00\",\"links\":{\"self\":\"https:\/\/worldvectorlogo.com\/api\/v1\/logos\/google-2015\",\"web\":\"https:\/\/worldvectorlogo.com\/logo\/google-2015\"}}],\"links\":{\"first\":\"https:\/\/worldvectorlogo.com\/api\/v1\/logos\/search?q=google&page=1\",\"last\":\"https:\/\/worldvectorlogo.com\/api\/v1\/logos\/search?q=google&page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"per_page\":20,\"to\":3,\"total\":3}}",
                            "name": "Success"
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"error\":{\"code\":\"validation_error\",\"message\":\"The given data was invalid.\",\"details\":{\"q\":[\"The q field is required.\"]}}}",
                            "name": "Validation error"
                        }
                    ]
                },
                {
                    "name": "Get random logos.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/logos\/random",
                            "query": [
                                {
                                    "key": "count",
                                    "value": "5",
                                    "description": "Number of logos (1-20).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/logos\/random?count=5"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns a random selection of logos. Useful for showcases or demos.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"spotify-2015\",\"name\":\"Spotify 2015\",\"downloads\":12500,\"svg_url\":\"https:\/\/cdn.worldvectorlogo.com\/logos\/spotify-2015.svg\",\"tags\":[\"music\",\"streaming\"],\"created_at\":\"2024-02-10T08:00:00+00:00\",\"updated_at\":\"2024-05-15T12:00:00+00:00\",\"links\":{\"self\":\"https:\/\/worldvectorlogo.com\/api\/v1\/logos\/spotify-2015\",\"web\":\"https:\/\/worldvectorlogo.com\/logo\/spotify-2015\"}}]}",
                            "name": "Success"
                        }
                    ]
                },
                {
                    "name": "Get a single logo by slug.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/logos\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/logos\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "google-2015",
                                    "description": "The logo slug."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns full details for a specific logo including tags and raw SVG content.\nThe `svg_content` field contains the full SVG markup that you can embed,\ntransform, or offer as a download in your application.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"slug\":\"google-2015\",\"name\":\"Google 2015\",\"downloads\":48230,\"svg_url\":\"https:\/\/cdn.worldvectorlogo.com\/logos\/google-2015.svg\",\"svg_content\":\"<svg xmlns=\\\"http:\/\/www.w3.org\/2000\/svg\\\" viewBox=\\\"0 0 272 92\\\">...<\/svg>\",\"tags\":[\"technology\",\"search-engine\"],\"created_at\":\"2024-01-15T10:30:00+00:00\",\"updated_at\":\"2024-06-20T14:15:00+00:00\",\"links\":{\"self\":\"https:\/\/worldvectorlogo.com\/api\/v1\/logos\/google-2015\",\"web\":\"https:\/\/worldvectorlogo.com\/logo\/google-2015\"}}}",
                            "name": "Success"
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"message\":\"Not Found.\"}",
                            "name": "Not found"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Tag",
            "description": "\nExplore logos organised by tags.",
            "item": [
                {
                    "name": "List all tags.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tags",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/tags"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all tags with their logo counts.\nSorted alphabetically by name.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"technology\",\"name\":\"Technology\",\"logos_count\":245,\"links\":{\"self\":\"https:\/\/worldvectorlogo.com\/api\/v1\/tags\/technology\",\"logos\":\"https:\/\/worldvectorlogo.com\/api\/v1\/tags\/technology\/logos\"}},{\"slug\":\"automotive\",\"name\":\"Automotive\",\"logos_count\":89,\"links\":{\"self\":\"https:\/\/worldvectorlogo.com\/api\/v1\/tags\/automotive\",\"logos\":\"https:\/\/worldvectorlogo.com\/api\/v1\/tags\/automotive\/logos\"}}]}",
                            "name": "Success"
                        }
                    ]
                },
                {
                    "name": "Get logos for a specific tag.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/tags\/:slug\/logos",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "Page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "20",
                                    "description": "Results per page (1-50).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/tags\/:slug\/logos?page=1&per_page=20",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "technology",
                                    "description": "The tag slug."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all published logos that have the given tag.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":[{\"slug\":\"google-2015\",\"name\":\"Google 2015\",\"downloads\":48230,\"svg_url\":\"https:\/\/cdn.worldvectorlogo.com\/logos\/google-2015.svg\",\"tags\":[\"technology\",\"search-engine\"],\"created_at\":\"2024-01-15T10:30:00+00:00\",\"updated_at\":\"2024-06-20T14:15:00+00:00\",\"links\":{\"self\":\"https:\/\/worldvectorlogo.com\/api\/v1\/logos\/google-2015\",\"web\":\"https:\/\/worldvectorlogo.com\/logo\/google-2015\"}}],\"links\":{\"first\":\"https:\/\/worldvectorlogo.com\/api\/v1\/tags\/technology\/logos?page=1\",\"last\":\"https:\/\/worldvectorlogo.com\/api\/v1\/tags\/technology\/logos?page=13\",\"prev\":null,\"next\":\"https:\/\/worldvectorlogo.com\/api\/v1\/tags\/technology\/logos?page=2\"},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":13,\"per_page\":20,\"to\":20,\"total\":245}}",
                            "name": "Success"
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"message\":\"Not Found.\"}",
                            "name": "Tag not found"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Account",
            "description": "\nManage your API key and view usage statistics. Requires authentication.",
            "item": [
                {
                    "name": "Get API usage statistics.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/account\/usage",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/account\/usage"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns daily usage breakdown for the current billing period (last 30 days).\nIncludes total requests, remaining quota, and per-endpoint breakdown."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"data\":{\"plan\":\"free\",\"today\":{\"used\":42,\"limit\":500,\"remaining\":458,\"resets_at\":\"2026-04-06T23:59:59+00:00\"},\"tokens\":1,\"daily_breakdown\":{\"2026-04-06\":{\"requests\":42,\"errors\":0,\"avg_response_time_ms\":28},\"2026-04-05\":{\"requests\":150,\"errors\":2,\"avg_response_time_ms\":35}}}}",
                            "name": "Success"
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\"message\":\"Unauthenticated.\"}",
                            "name": "Unauthenticated"
                        }
                    ]
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}