POST
/
domain
curl --request POST \
  --url https://api.vecurity.net/v1/domain \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "domain_name": "example.com"
}'
{
  "status": 200,
  "message": "Data successfully retrieved.",
  "data": {
    "DETAILSCOMINGSOON": {}
  },
  "metadata": {
    "version": "1.0.0",
    "author": "Vecurity",
    "data_count": 1
  }
}

Headers

Authorization
string
required

Bearer token for authentication.

Content-Type
enum<string>
required

Specifies the media type of the request body (e.g., application/json).

Available options:
application/json

Body

application/json
domain_name
string
required
Example:

"example.com"

Response

200
application/json
Successfully retrieved the user token.
status
integer
Example:

200

message
string
Example:

"Data successfully retrieved."

data
object
metadata
object