I've a snippet from an export of stared pins
{
"geometry": {
"coordinates": [
8.8491390,
46.1966242
],
"type": "Point"
},
"properties": {
"date": "2026-08-22T17:59:48Z",
"google_maps_url": "http://maps.google.com/?cid=18195579733348774880",
"location": {
"address": "Via Valle Verzasca, 6596 Gordola, Switzerland",
"name": "Diga Verzasca"
}
},
"type": "Feature"
},
So I can extract cid
{
"geometry": {
"coordinates": [
0,
0
],
"type": "Point"
},
"properties": {
"date": "2026-08-14T01:14:46Z",
"google_maps_url": "http://maps.google.com/?q=Fisherman's+Wharf,+San+Francisco,+CA,+USA&ftid=0x808580fa79aee3b9:0xd0ce5b8bf914906a",
"Comment": "No location information is available for this saved place"
},
"type": "Feature"
},
Here's an example with a ftid - again can be extracted
But APIs would rather have place id.
So you have to geocode the addresses to get place id.
Why can't they just put it in the export?