GET
/
api
/
user
/
detail
/
<str:customer_identifier>
curl --request GET \
  --url https://api.keywordsai.co/api/user/detail/%3Cstr:customer_identifier%3E \
  --header 'Authorization: Bearer <token>'

User detail endpoint allows you to retrieve details of a particular user.

Make sure to replace YOUR_KEYWORDSAI_API_KEY with your actual Keywords AI API key, and <str:customer_identifier> with the actual customer identifier.

Example call

import requests

url = "https://api.keywordsai.co/api/user/detail/some_customer_identifier"
api_key = "YOUR_KEY" # Replace with your actual Keywords AI API key
headers = {
    "Authorization": f"Bearer {api_key}",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
print(response.json())