curl --request POST \
--url https://usejuiced.com/api/ping \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"zip": "90210"
}'{
"ping_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"message": "Match found",
"bids": [
{
"id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"price": 45,
"tcpa_name": "Nectarflix Entertainment",
"customer_id": 123
},
{
"id": "a3bb189e-8bf9-3888-9912-ace4e6543002",
"price": 38.5,
"tcpa_name": "The Mangolorian Security",
"customer_id": 456
}
]
}Submits partial lead data to check for matching bids before sending the full lead. Use this to determine pricing and availability before committing to a full lead submission.
The response varies based on your source type:
curl --request POST \
--url https://usejuiced.com/api/ping \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"zip": "90210"
}'{
"ping_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"message": "Match found",
"bids": [
{
"id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"price": 45,
"tcpa_name": "Nectarflix Entertainment",
"customer_id": 123
},
{
"id": "a3bb189e-8bf9-3888-9912-ace4e6543002",
"price": 38.5,
"tcpa_name": "The Mangolorian Security",
"customer_id": 456
}
]
}Use your source's API key as the username and API secret as the password. Base64 encode the credentials in the format api_key:api_secret.
Ping processed successfully
Response for internal source types
Unique identifier for this ping. Use this when submitting the full lead.
"f47ac10b-58cc-4372-a567-0e02b2c3d479"
Result of the ping request.
Match found, No match found, Duplicate, Rejected Available bids for this lead. Empty if no match or duplicate.
Show child attributes