Skip to main content
GET
/
v1
/
domain-knowledge
/
driver
Get Driver
curl --request GET \
  --url https://sdk.nimbleway.com/v1/domain-knowledge/driver \
  --header 'Authorization: Bearer <token>'
{
  "antibots": [
    "<string>"
  ],
  "description": "<string>",
  "driver": "<string>",
  "agent": "<string>",
  "need_to_render": true,
  "url": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.nimbleway.com/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

url
string

Target domain to resolve driver for (e.g. amazon.com).

Example:

"amazon.com"

agent
string

Agent name to resolve driver for (e.g. nimble-ecommerce).

Example:

"nimble-ecommerce"

Response

Driver resolution result

antibots
string[]
required

List of detected antibots for the domain

Example:
["cloudflare", "datadome"]
description
string
required

Description of the driver

driver
string
required

Resolved driver name

Example:

"vx10-pro"

agent
string

The input agent name (present when agent query param was used)

need_to_render
boolean

Whether the page needs to be rendered to be properly resolved.

url
string

The input URL (present when url query param was used)