Python3 Example
Here is an example of constructing a request to identify a company corresponding to the company_id.
import requests
url = " https://api.rhetorik360.io/company/INSERT YOUR COMPANY_ID HERE"
payload = {}
headers = {
'x-api-key': INSERT YOUR API KEY HERE
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)Updated about 1 year ago
What’s Next
Did this page help you?

