Skip to main content
POST
/
api
/
v1
/
byok
/
providers
/
{provider}
/
validate
Validate a BYOK provider key
curl --request POST \
  --url https://neo.api.projectdiscovery.io/api/v1/byok/providers/{provider}/validate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "api_key": "<string>",
  "location": "<string>"
}
'
{
  "valid": true,
  "details": "<string>",
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.neo.projectdiscovery.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

provider
enum<string>
required

Provider identifier

Available options:
openrouter,
anthropic,
openai,
google,
xai,
vercel-gateway,
google-vertex,
amazon-bedrock

Body

application/json
api_key
string
required

The provider API key to validate. For google-vertex: must be the full GCP service account JSON string (containing type, client_email, private_key, project_id).

location
string | null

Cloud region for region-aware providers:

  • google-vertex: GCP region for Vertex AI (e.g. "us-central1", "us-east5"). Defaults to "us-central1".
  • amazon-bedrock: AWS region (e.g. "us-east-1"). Defaults to "us-east-1". Ignored by URL-based providers — use base_url instead.

Response

Validation result

valid
boolean
required

Whether the API key is valid

details
string

Additional details about the validation result

error
string

Error message if validation failed