DeepVerify API Documentation
  • GETTING STARTED
    • Introduction
    • Access and authentication
    • Your first API request
    • DeepVerified Results
  • API REFERENCE
    • Verify disinformation in text
    • Judge AI output
      • /fact-check
      • /answer-check
      • /reference-check
    • Generate verification report
Powered by GitBook
On this page
  1. GETTING STARTED

Your first API request

// Some code

The example below uses our API Pro endpoint https://api.deepverify.ai. If you're an API Free user, remember to update your requests to use https://api-free.deepverify.ai instead.

Example Request
curl -X POST 'https://api.deepverify.ai/v2/fact-check' \
--header 'Authorization: DeepVerify-Auth-Key [yourAuthKey]' \
--header 'Content-Type: application/json' \
--data '{
  "text": [
    "Hello, world!"
  ],
  "domain_name": "US Health Care Policy"
}'
Example Response
{
  "verified_results": [
    {
      "detected_domain_name": "Korean Legal Opinion",
      "text": "Hallo, Welt!"
    }
  ]
}

P

The example below uses our API Pro endpoint https://api.deepverify.ai. If you're an API Free user, remember to update your requests to use https://api-free.deepverify.ai instead.

Example Request
curl -X POST 'https://api.deepl.com/v2/translate' \
--header 'Authorization: DeepL-Auth-Key [yourAuthKey]' \
--header 'Content-Type: application/json' \
--data '{
  "text": [
    "Hello, world!"
  ],
  "target_lang": "DE"
}'
Example Response
{
  "translations": [
    {
      "detected_source_language": "EN",
      "text": "Hallo, Welt!"
    }
  ]
}

PreviousAccess and authenticationNextDeepVerified Results

Last updated 7 months ago