{ "opencollection": "1.0.0", "info": { "name": "Reputation Asset Library Categories API", "version": "v3" }, "request": { "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "items": [ { "info": { "name": "Categories", "type": "folder" }, "items": [ { "info": { "name": "Get Categories", "type": "http" }, "http": { "method": "GET", "url": "https://api.reputation.com/v3/categories", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "docs": "Provides the Business Listings categories for each profile, detailing each category's associated industries and identifiers.\nSample Requests\nPython\nimport requests\nurl = 'https://api.reputation.com/v3/categories?offset=0&limit=3'\nheaders = {\n 'x-api-key': 'Your API Key',\n 'Content-Type': 'application/json;charset=UTF-8'\n}\nresponse = requests.get(url, headers=headers)\nif response.status_code >= 200 and response.status_code < 400:\n print(response.text)\nelse:\n print(\"Error: \"," } ] } ], "bundled": true }