GET/v1/results

Get Results

Retrieve message sending results from Leboncoin Auto Message Sender

Retrieve results showing which messages were sent successfully and which were skipped or failed. Each result includes the message content, delivery status, and listing details.

Headers

KeyValueRequired
AuthorizationToken YOUR_API_KEYYes

Result Fields

id
integer
Unique result identifier
Example: 53557759
object
string
Always "result"
Example: result
squid
string
Squid that produced this result
Example: 72d18e4c94534b829877bb7c092b1f80
run
string
Run that produced this result
Example: 3ff48bb8ef19426e87fbb3e102dd4531
annonce_id
string
Leboncoin listing ID the message was sent to
Example: 2943434204
url
string
Direct URL of the Leboncoin listing
Example: https://www.leboncoin.fr/ad/locations/2943434204

Message Information

message
string
The actual message sent, with variables replaced
Example: Hello Jean, I am interested in your listing...
message_hash
stringnull
Hash of message content used to prevent duplicate sends
Example: a1b2c3d4e5f6

Status Fields

is_sent
boolean
True if the message was successfully sent
Example: true
was_already_sent
booleannull
True if skipped because same message was already sent
Example: false
is_deactivated
boolean
True if the listing was deactivated at processing time
Example: false

Timestamps

last_publication_date
string
When the listing was last published (ISO 8601)
Example: 2025-07-04T04:05:30Z
scraping_time
string
When this result was processed (ISO 8601)
Example: 2025-07-04T04:08:09.340Z
functions.one_time_message.filling_date
string
Timestamp when the message function was executed
Example: 07/04/2025, 06:08:09 +0200

Message Status Interpretation

true
was_already_sent:
null/false
is_deactivated:
false
Meaning:
Message sent successfully
false
was_already_sent:
true
is_deactivated:
false
Meaning:
Skipped - duplicate message already sent
false
was_already_sent:
null/false
is_deactivated:
true
Meaning:
Skipped - listing was deactivated
false
was_already_sent:
null/false
is_deactivated:
false
Meaning:
Failed to send message

Parameters

squidstring
Required
Hash of the squid to get results from
Example: 72d18e4c94534b829877bb7c092b1f80
runstring
Optional
Hash of a specific run (optional)
Example: 3ff48bb8ef19426e87fbb3e102dd4531
pageinteger
Optional
Page number (default: 1)
Example: 1
page_sizeinteger
Optional
Results per page (default: 50, max: 100)
Example: 50
Pro Tip

Pro Tip

Filter results by `is_sent=true` to see only successfully delivered messages.
Pro Tip

Pro Tip

Check `was_already_sent` to identify duplicate message attempts that were skipped.
Note

Note

The `message_hash` enables duplicate detection - identical messages to the same listing are automatically skipped.