-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathql.py
More file actions
673 lines (606 loc) · 12.1 KB
/
Copy pathql.py
File metadata and controls
673 lines (606 loc) · 12.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
import requests
import json
import time
URL = "https://graph.cars.com/graphql/api"
HEADERS = {
"content-type": "application/json",
"x-api-key": "5rrmnWVl1MDzPcEnDvEp3Pu101IGXEGo",
"user-agent": "Mozilla/5.0"
}
GRAPHQL_QUERY = """query SearchResultsPageSearch($agenticSearchQuery: String, $aiSearchId: String, $page: Int, $pageSize: Int, $searchInstanceId: String, $selectedSearchFilters: [SelectedSearchFilterInput!]!, $sort: ListingSearchSortField) {
srpSearch(
additionalSupportedResultComponents: [BRANDED_CANVAS_AD, INFO_PANEL]
agenticSearchQuery: $agenticSearchQuery
aiSearchId: $aiSearchId
page: $page
pageSize: $pageSize
searchInstanceId: $searchInstanceId
selectedSearchFilters: $selectedSearchFilters
sort: $sort
) {
...SearchResultsProperties
}
}
fragment AnalyticsContextProperties on AnalyticsContext {
context
fingerprint
}
fragment StackProperties on Stack {
__typename
alignItems
contentReference {
contentId
groupId
}
customGap
direction
gap
justifyContent
wrap
}
fragment NavigateButtonProperties on NavigateButton {
actionLabel
actionTarget
prefixIcon
suffixIcon
analyticsContext {
...AnalyticsContextProperties
}
}
fragment AnalyticsInteractionProperties on AnalyticsInteraction {
interactionType
payload
trid
}
fragment NavigateInteractionProperties on NavigateInteraction {
clientAttrs {
name
value
}
destination
interactionType
target
}
fragment DniInteractionProperties on DniInteraction {
dniCorrelationData
fallbackNumber
interactionType
listingId
}
fragment OpenLeadFormInteractionProperties on OpenLeadFormInteraction {
interactionType
action
}
fragment OpenMakeOfferFormInteractionProperties on OpenMakeOfferFormInteraction {
interactionType
action
target
url
}
fragment KeyValuePairProperties on KeyValuePair {
key
value
}
fragment GraphqlQueryProperties on GraphqlQuery {
queryParams {
...KeyValuePairProperties
}
uri
}
fragment OpenPopoverInteractionProperties on OpenPopoverInteraction {
appearance
content {
... on GraphqlQuery {
...GraphqlQueryProperties
}
}
interactionType
target
}
fragment CarsonSearchChatInteractionProperties on CarsonSearchChatInteraction {
optimisticMessage {
id
content
createdAt
isStreaming
role
}
carsonActionPayload
}
fragment ChangeSearchFiltersInteractionProperties on ChangeSearchFiltersInteraction {
interactionType
selectedSearchFiltersAdd {
filter
enabled
point {
srid
coordinates {
latitude
longitude
}
}
radiusMiles
value
values
zipCode
}
selectedSearchFiltersRemove {
filter
enabled
point {
srid
coordinates {
latitude
longitude
}
}
radiusMiles
value
values
zipCode
}
}
fragment HasClickInteractionsProperties on HasClickInteractions {
onClickInteractions {
...AnalyticsInteractionProperties
...NavigateInteractionProperties
...DniInteractionProperties
...OpenLeadFormInteractionProperties
...OpenMakeOfferFormInteractionProperties
...OpenPopoverInteractionProperties
...CarsonSearchChatInteractionProperties
...ChangeSearchFiltersInteractionProperties
}
}
fragment TextSnippetProperties on TextSnippet {
...HasClickInteractionsProperties
fontColor
text
textStyle
}
fragment TextProperties on Text {
headingLevel
textSnippets {
...TextSnippetProperties
}
}
fragment BadgeProperties on Badge {
analyticsContext {
...AnalyticsContextProperties
}
icon
variant
strong
explainer {
button {
...NavigateButtonProperties
}
body {
...TextProperties
}
title
}
description
value
}
fragment HasViewInteractionsProperties on HasViewInteractions {
onViewInteractions {
...AnalyticsInteractionProperties
}
}
fragment ButtonProperties on Button {
__typename
accessibilityLabel
analyticsContext {
...AnalyticsContextProperties
}
...HasClickInteractionsProperties
...HasViewInteractionsProperties
displayLabel
enabled
label
prefixIcon
suffixIcon
size
variant
}
fragment DatumIconProperties on DatumIcon {
icon
name
styleIdentifier
value
}
fragment InlineLinkProperties on InlineLink {
actionTarget
analyticsContext {
...AnalyticsContextProperties
}
destinationUrl
length
location
}
fragment DisplayValueProperties on DisplayValue {
links {
...InlineLinkProperties
}
text
}
fragment DatumDisplayProperties on DatumDisplay {
label
iconName
tooltip {
title
value
}
text {
...TextProperties
}
displayValue {
text
links {
analyticsContext {
...AnalyticsContextProperties
}
destinationUrl
length
location
}
}
}
fragment MonthlyPaymentDetailsProperties on MonthlyPaymentDetails {
disclaimer {
...DisplayValueProperties
}
datums {
...DatumDisplayProperties
}
title
}
fragment MonthlyPaymentProperties on MonthlyPayment {
analyticsContext {
...AnalyticsContextProperties
}
label
icon
popover {
...MonthlyPaymentDetailsProperties
}
}
fragment CardStackChildren on Element {
__typename
... on Badge {
...BadgeProperties
}
... on Button {
...ButtonProperties
}
... on DatumIcon {
...DatumIconProperties
}
... on MonthlyPayment {
...MonthlyPaymentProperties
}
... on Text {
...TextProperties
}
}
fragment StackLevel4 on Stack {
...StackProperties
items {
...CardStackChildren
}
}
fragment StackLevel3 on Stack {
...StackProperties
items {
...CardStackChildren
... on Stack {
...StackLevel4
}
}
}
fragment StackLevel2 on Stack {
...StackProperties
items {
...CardStackChildren
... on Stack {
...StackLevel3
}
}
}
fragment StackWithChildren on Stack {
...StackProperties
items {
...CardStackChildren
... on Stack {
...StackLevel2
}
}
}
fragment DescriptionListProperties on DescriptionList {
__typename
items {
label
value
}
}
fragment UnionBoxStringProperties on UnionBoxString {
string
}
fragment RatingReviewsProperties on RatingReviews {
__typename
...NavigateButtonProperties
...UnionBoxStringProperties
}
fragment RatingProperties on Rating {
action {
...RatingReviewsProperties
}
compact
rating
size
variant
}
fragment BreakdownItemProperties on BreakdownItem {
breakdownText {
...TextProperties
}
breakdownRating {
...RatingProperties
}
}
fragment ReviewProperties on Review {
__typename
breakdown {
...BreakdownItemProperties
}
closeReviewRevealButton
date
openReviewRevealButton
reviewBody
reviewBulletPoints {
...TextProperties
}
subjectName
title
userAttrs
userInfo
rating {
...RatingProperties
}
vehicleRating {
...RatingProperties
}
}
fragment SearchResultsProperties on SrpResults {
analytics {
...AnalyticsContextProperties
}
adTargetingParameters {
key
value
}
metadata {
pageSize
page
selectedSearchFilters {
enabled
filter
radiusMiles
value
values
zipCode
}
seoAggregations
sort
totalListings
totalPages
}
searchTitle
results {
... on SrpListingGridCard {
__typename
analytics {
...AnalyticsContextProperties
}
body {
... on Stack {
...StackWithChildren
}
}
footer {
... on Stack {
...StackWithChildren
}
}
gallery {
images {
url
altText
}
imageCount
}
attributionType
extendedVehicleInfo {
features {
...DescriptionListProperties
}
dealerReview {
...ReviewProperties
}
vehicleReview {
...ReviewProperties
}
vehicleInformation {
...DescriptionListProperties
}
}
isSaved
listingId
newVdpEligible
onViewInteractions {
...AnalyticsInteractionProperties
}
sponsoredType
}
... on AdUnitModule {
__typename
adUnitPath
adType
adSubtype
adSizeLayout {
adSizes {
height
width
}
fluid
}
adAppnexusPlacementId
adId
adHiddenOn
}
... on BrandedCanvasAd {
__typename
body
creativeId
requestUrl
make
model
}
... on InfoPanel {
__typename
body {
__typename
...TextProperties
}
disclaimer {
trigger
body {
__typename
...TextProperties
}
}
icon
title
}
... on Text {
__typename
...TextProperties
}
}
savedSearchIdentifier
searchInstanceId
sortSelector {
buttonTitle
options {
isSelected
name
value
}
}
}"""
BASE_VARIABLES = {
"pageSize": 22,
"searchInstanceId": "78bbfab6-cf33-433b-9304-da2c36891964",
"selectedSearchFilters": [
{
"enabled": None,
"value": None,
"values": ["nissan-pathfinder"],
"filter": "models",
"zipCode": None,
"radiusMiles": None
},
{
"enabled": None,
"value": None,
"values": None,
"filter": "area",
"zipCode": "60606",
"radiusMiles": 50
},
{
"enabled": None,
"value": None,
"values": ["nissan"],
"filter": "makes",
"zipCode": None,
"radiusMiles": None
},
{
"enabled": None,
"value": "new",
"values": None,
"filter": "stock_type",
"zipCode": None,
"radiusMiles": None
}
],
"sort": "BEST_MATCH_DESC"
}
def fetch_page(page: int):
payload = {
"operationName": "SearchResultsPageSearch",
"query": GRAPHQL_QUERY,
"variables": {
**BASE_VARIABLES,
"page": page
}
}
res = requests.post(URL, headers=HEADERS, json=payload, timeout=30)
res.raise_for_status()
return res.json()
def is_end_of_results(results):
END_TITLES = {
"No exact matches found",
"You’ve reached the end of results",
}
for item in results:
if item.get("__typename") != "InfoPanel":
continue
# 1️⃣ Title-based stop (most reliable)
title = item.get("title")
if title in END_TITLES:
return True
# 2️⃣ Body text-based stop (fallback)
body = item.get("body", {})
if body.get("__typename") == "Text":
snippets = body.get("textSnippets", [])
for snippet in snippets:
text = snippet.get("text", "")
if "saving your search" in text.lower():
return True
return False
def extract_listings(results):
listings = []
for item in results:
if item.get("__typename") == "SrpListingGridCard":
listings.append({
"listingId": item.get("listingId"),
"gallery": item.get("gallery"),
"body": item.get("body"),
"footer": item.get("footer"),
"extendedVehicleInfo": item.get("extendedVehicleInfo")
})
return listings
def crawl_all_pages():
page = 1
all_listings = []
while True:
print(f"Fetching page {page}")
data = fetch_page(page)
results = data["data"]["srpSearch"]["results"]
if is_end_of_results(results):
print("Reached end of results.")
break
page_listings = extract_listings(results)
print(f"Found {len(page_listings)} listings")
all_listings.extend(page_listings)
page += 1
time.sleep(1) # polite delay
return all_listings
if __name__ == "__main__":
listings = crawl_all_pages()
with open("cars_results.json", "w", encoding="utf-8") as f:
json.dump(listings, f, indent=2)
print(f"Saved {len(listings)} listings to cars_results.json")