This is an example GraphQL API Call against our searchV2 query that returns the first name, last name, and email addresses, of the individual(s) associated with the phone number 704-362-8945.

curl 'https://api.kelvindata.com/graphql' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer your-apikey-here' \
--data-binary '
{"query":"query exampleQuery { searchV2(phone: \"7043628945\") { emailAddresses name { first last } } }"}
'

Launch Example in API Playground

Click Here to Launch

📘

Don't forget to add your ApiKey to the request headers in the API Playground!

Add the Authentication header in the "HTTP HEADERS" section at the bottom of the Playground screen
{"Authorization": "Bearer your-apikey-here"}