← Back to Home

Endpoints

  • POST /contact
Post

/v1/contact

Send a message to our team. Use this endpoint to submit inquiries, feedback, or support requests. We typically respond within 24 hours.

Request Body Schema

name
string
Your full name. Required.
email
string (email)
Your email address for us to respond to. Required.
message
string
The content of your inquiry. Required. Minimum 10 characters.

Company Information

Email: info@sabnode.in

Address: D829 sector 5 malviya nagar jaipur 302017

Example Request

curl -X POST https://api.sabnode.in/v1/contact \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Jane Doe",
    "email": "jane@example.com",
    "message": "I would like to learn more..."
  }'

Try it out