Skip to main content

🔐 Authentication

All requests to the IntelSend API must be authenticated using a Bearer Token in the request header.


📑 Required Headers

NameValueDescription
authorizationBearer v1_8pJc****SLLeC24Use the provided bearer token.
content-typeapplication/jsonSpecify JSON as the content type.

🛠️ Example Request

curl -X POST "https://intelsend.com/api/v1/send/single_email" \
-H "authorization: Bearer v1_8pJc****SLLeC24" \
-H "content-type: application/json" \
-d '{
"from": "info@intelsend.com",
"to": "abc@gmail.com",
}'

Tip

Always keep your Bearer Token secure. Do not share it publicly or expose it in client-side code.