Overview
The Show Instant Design Lead endpoint retrieves detailed information for a single Instant Design lead, identified by its unique lead ID. This endpoint is useful for inspecting individual lead submissions in greater detail after retrieving a list of leads using the List Instant Design Leads endpoint.
The lead ID is passed as a path parameter in the request URL. The response includes all available information for the specified lead—such as contact information, property location, and the timestamp indicating when the lead was submitted.
Integration with Webhooks
When an Instant Design lead form is submitted, a webhook event is triggered that includes the lead_id
of the new submission. This lead_id
can then be plugged directly into this endpoint to fetch the complete details of that lead.
Sample Response Body
{
"id": 106834,
"email": "[email protected]",
"phone_number": "+17758675309",
"full_name": "Michael Bluth",
"location_postal_code": "93420",
"created_at": "2025-07-18T18:10:23.946Z",
"location_line_1": "1019 Sunset Drive",
"location_city": "Arroyo Grande",
"location_region": "CA"
}