Endpoint
Request Body
string
required
The email address to send the OTP to
string
Full name of the user (used when creating a new account)
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
curl -X POST "https://api.outx.ai/linkedin-agent/auth-send-otp" \
-H "Content-Type: application/json" \
-d '{
"email": "john@example.com",
"full_name": "John Doe"
}'
const response = await fetch(
"https://api.outx.ai/linkedin-agent/auth-send-otp",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
email: "john@example.com",
full_name: "John Doe",
}),
}
);
const data = await response.json();
console.log(data); // { success: true, email: "john@example.com" }
import requests
response = requests.post(
"https://api.outx.ai/linkedin-agent/auth-send-otp",
json={
"email": "john@example.com",
"full_name": "John Doe",
},
)
print(response.json())
{
"success": true,
"email": "john@example.com"
}
Send a one-time password to an email address for programmatic signup or login. Use this endpoint to authenticate with the OutX LinkedIn API without a browser.
POST https://api.outx.ai/linkedin-agent/auth-send-otp
{
"success": true,
"email": "john@example.com"
}
curl -X POST "https://api.outx.ai/linkedin-agent/auth-send-otp" \
-H "Content-Type: application/json" \
-d '{
"email": "john@example.com",
"full_name": "John Doe"
}'
const response = await fetch(
"https://api.outx.ai/linkedin-agent/auth-send-otp",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
email: "john@example.com",
full_name: "John Doe",
}),
}
);
const data = await response.json();
console.log(data); // { success: true, email: "john@example.com" }
import requests
response = requests.post(
"https://api.outx.ai/linkedin-agent/auth-send-otp",
json={
"email": "john@example.com",
"full_name": "John Doe",
},
)
print(response.json())
| Status | Error | Description |
|---|---|---|
400 | Missing or invalid 'email' | The email field is missing or not a valid string |
