{ "opencollection": "1.0.0", "info": { "name": "Reputation Asset Library Credentials API", "version": "v3" }, "request": { "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "items": [ { "info": { "name": "Credentials", "type": "folder" }, "items": [ { "info": { "name": "Get Oauth Status", "type": "http" }, "http": { "method": "GET", "url": "https://api.reputation.com/v3/credentials/oauth", "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "docs": "This endpoint retrieves the OAuth credentials for various locations, detailing the validity and the last refresh date of connections to different online sources like Facebook, Instagram, LinkedIn and more.\nSample Requests\nPython\nimport requests\nurl = 'https://api.reputation.com/v3/credentials/oauth'\nheaders = {\n 'Accept': 'application/json',\n 'x-api-key': 'Your API key'\n}\nresponse = requests.get(url, headers=headers)\nif response.status_code == 200:\n print(response.json())\nelse:\n prin" } ] } ], "bundled": true }