POST
/
v1
/
auth
/
verify
Verify Code
curl --request POST \
  --url https://api.linkupapi.com/v1/auth/verify \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "code": "<string>",
  "email": "<string>",
  "country": "<string>"
}'
{
  "status": "success",
  "message": "Login successful",
  "login_token": "XXXX..."
}
Verify the security code sent to your email during the LinkedIn authentication process. This endpoint should be called after receiving the verification code from the login endpoint.
This endpoint costs 1 credit per request.

Header Parameters

x-api-key
string
required
Your API key

Body Parameters

code
string
required
The verification code received via email
email
string
required
The email address used for LinkedIn login
country
string
default:"FR"
Country code for proxy selection. Available: (US,UK,FR)

Response

status
string
Verification status
LinkedIn authentication cookie (on successful verification)
{
  "status": "success",
  "message": "Login successful",
  "login_token": "XXXX..."
}