Manual Fetching

If you have custom needs or can't use our JavaScript SDK, you'll need to manually fetch from our API using your own tech stack. This is still no big deal.

Each programming language and library has different methods for fetching data. We'll demonstrate the parameters needed to successfully verify a user from our API, accompanied by relevant examples.

Replace <API_KEY> with your real API key. Check our introduction page for help on getting it.

POST /v1/verify HTTP/1.1
Authorization: Bearer <API_KEY>
Content-Length: 90
Content-Type: application/json
Host: guardient-api.jrcooler.workers.dev
User-Agent: HTTPie

{
  "email": "mehmetuzun.veryreal@gmail.com",
  "ip": "1.2.3.4",
  "phone": "2983789123"
}

Last updated

Was this helpful?