Verify Your API Key

Learn how to validate your API Key and ID.

Once you have your API key, you’re ready to confirm that it’s working correctly. You can do this by calling the verify endpoint, which validates your API key, ensures it’s functioning as expected, and provides some general API usage details.

curl --location -X GET "https://api.talent.performyard.com/v1/auth/verify" \
--header 'Accept: application/json' \
--header 'x-api-id: {{X-API-ID}}' \
--header 'x-api-key: {{X-API-KEY}}'

Here's what a successful 200 response should look like:

{
    "company_name": "<string>",
    "last_used": "<datetime>",
    "is_enabled": true,
    "quota_limit": 10000,
    "requests_made": 0,
    "refresh_period": "<string>"
}