3DExplorer Data REST API
The 3DExplorer Data REST API is a lightweight, read-only API for accessing data from Seenic 3D Explorer experiences. Use it when you need to build your own UI, integrate Seenic content into an external system, or simply fetch structured data to power search, availability, and dashboards.
This API is public: it does not require authentication and is intended to be easy to use from any backend service.
Base URL
All endpoints are served from:
https://data-api.seenic.io
Read-only
The Data API is read-only. You can only retrieve data (GET requests). It does not support creating, updating, or deleting resources.
No authentication
Requests do not require an API key or token.
Rate limiting
To keep the service reliable for everyone, requests are rate-limited:
- Max 5 requests per second per IP address
If you exceed the limit, you may temporarily receive rate limit responses. Implement basic retries with backoff if needed.
Conventions
- All requests use JSON unless stated otherwise.
- Errors are returned with an HTTP status code and an error payload.
Methods
Get 3dExplorer location Data
GET /location/{locationId}
Returns data for a single location.
- Base URL:
https://data-api.seenic.io - Path params
locationId(string | number): Location identifier
Example request
curl "https://data-api.seenic.io/location/42"
Response
The response body is JSON.
Example response
{
"uuid": "1752c806-620c-43e0-8ccd-d3a8d8f97cac",
"explorer3dId": "42",
"status": "active",
"language": "en",
"name": "Aventon Soraya 3D Overview",
"unitName": "Unit",
"sunNorth": 0,
"overview3dLocationId": "3972",
"mainColor": "#46a1a1",
"applyMainColorToSitemap": false,
"defaultTab": "3d-overview",
"logo": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/misc/f9a2c617-4497-4a55-a098-d095d99d343e.png",
"hidePrices": false,
"pricingStrategy": "flat_pricing",
"originsUrlParam": null,
"leaseTermURLParam": "LeaseTerm",
"moveInDateURLParam": "MoveInDate",
"currency": "USD",
"displayDateFormat": "MM/DD/YYYY",
"propertyEmail": "Soraya-pm@pegasusresidential.com",
"phoneNumber": "+19046377836",
"website": "aventonsoraya.com",
"disclaimer": null,
"customSubmitButtonText": "Apply",
"leaseTermPeriod": 30,
"limitMoveDate": false
}
Get 3dExplorer's floorplans
GET /location/{locationId}/floorplans
Returns a list of floorplans for the given location.
- Base URL:
https://data-api.seenic.io - Path params
locationId(string | number): Location identifier
Example request
curl "https://data-api.seenic.io/location/42/floorplans"
Response
The response body is JSON.
Example response
[
{
"uuid": "9cac0c01-f92e-4d7a-bdc2-18a7ba26ca5c",
"name": "C1",
"area": null,
"bathroomAmount": 2,
"bedroomAmount": 3,
"engrainId": "197191",
"spinnerLink": "https://tour.seenic.io/?spinnerId=2134",
"tourLink": "https://tour.seenic.io/?locationId=527",
"fallBackTourLink": null,
"plans": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/9cac0c01-f92e-4d7a-bdc2-18a7ba26ca5c/content/plans/C1-main.jpg",
"fileName": "C1-main.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
},
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/9cac0c01-f92e-4d7a-bdc2-18a7ba26ca5c/content/plans/C1-secondary.jpg",
"fileName": "C1-secondary.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
}
],
"images": [],
"videos": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/9cac0c01-f92e-4d7a-bdc2-18a7ba26ca5c/content/videos/videoE9D3E140-8799-46E5-9E29-364F20C53EB3.mp4",
"fileName": "videoE9D3E140-8799-46E5-9E29-364F20C53EB3.mp4",
"lastModified": "2025-03-28T18:34:01.000Z"
}
],
"capturePoints": []
},
{
"uuid": "17419c41-ada1-4abe-a7c1-f16694a915d0",
"name": "B1",
"area": null,
"bathroomAmount": 2,
"bedroomAmount": 2,
"engrainId": "197192",
"spinnerLink": "https://tour.seenic.io/?spinnerId=2069",
"tourLink": "https://tour.seenic.io/?locationId=522",
"fallBackTourLink": null,
"plans": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/17419c41-ada1-4abe-a7c1-f16694a915d0/content/plans/B1-main.jpg",
"fileName": "B1-main.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
},
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/17419c41-ada1-4abe-a7c1-f16694a915d0/content/plans/B1-secondary.jpg",
"fileName": "B1-secondary.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
}
],
"images": [],
"videos": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/17419c41-ada1-4abe-a7c1-f16694a915d0/content/videos/video7E4B7F2A-4449-422E-8552-FBFBCB6574CE.mp4",
"fileName": "video7E4B7F2A-4449-422E-8552-FBFBCB6574CE.mp4",
"lastModified": "2025-03-28T18:34:58.000Z"
}
],
"capturePoints": []
},
{
"uuid": "021da405-74a7-4883-991e-a857b6b8eead",
"name": "C2",
"area": null,
"bathroomAmount": 2,
"bedroomAmount": 3,
"engrainId": "197193",
"spinnerLink": "https://tour.seenic.io/?spinnerId=2135",
"tourLink": "https://tour.seenic.io/?locationId=528",
"fallBackTourLink": null,
"plans": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/021da405-74a7-4883-991e-a857b6b8eead/content/plans/C2-main.jpg",
"fileName": "jpg",
"lastModified": 1743180088777
},
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/021da405-74a7-4883-991e-a857b6b8eead/content/plans/C2-secondary.jpg",
"fileName": "jpg",
"lastModified": 1743180089398
}
],
"images": [],
"videos": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/021da405-74a7-4883-991e-a857b6b8eead/content/videos/videoC417ED31-6564-46EE-A3EA-565EE5D7AFFE.mp4",
"fileName": "videoC417ED31-6564-46EE-A3EA-565EE5D7AFFE.mp4",
"lastModified": "2025-03-28T18:30:02.000Z"
}
],
"capturePoints": []
},
{
"uuid": "1aa2a518-b42c-4155-90cb-11f39642e505",
"name": "B2",
"area": null,
"bathroomAmount": 2,
"bedroomAmount": 2,
"engrainId": "197189",
"spinnerLink": "https://tour.seenic.io/?spinnerId=2071",
"tourLink": "https://tour.seenic.io/?locationId=523",
"fallBackTourLink": null,
"plans": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/1aa2a518-b42c-4155-90cb-11f39642e505/content/plans/B2-main.jpg",
"fileName": "B2-main.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
},
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/1aa2a518-b42c-4155-90cb-11f39642e505/content/plans/B2-secondary.jpg",
"fileName": "B2-secondary.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
}
],
"images": [],
"videos": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/1aa2a518-b42c-4155-90cb-11f39642e505/content/videos/video4DB5134C-AF07-4A1D-8B21-1C490FF04CD2.mp4",
"fileName": "video4DB5134C-AF07-4A1D-8B21-1C490FF04CD2.mp4",
"lastModified": "2025-03-28T18:35:51.000Z"
}
],
"capturePoints": []
},
{
"uuid": "f69644f4-99ce-4f8f-8569-94ec765920b3",
"name": "A2",
"area": null,
"bathroomAmount": 1,
"bedroomAmount": 1,
"engrainId": "197194",
"spinnerLink": "https://tour.seenic.io/?spinnerId=2069",
"tourLink": "https://tour.seenic.io/?locationId=521",
"fallBackTourLink": null,
"plans": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/f69644f4-99ce-4f8f-8569-94ec765920b3/content/plans/A2-main.jpg",
"fileName": "A2-main.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
},
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/f69644f4-99ce-4f8f-8569-94ec765920b3/content/plans/A2-secondary.jpg",
"fileName": "A2-secondary.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
}
],
"images": [],
"videos": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/f69644f4-99ce-4f8f-8569-94ec765920b3/content/videos/video3DE71189-66FF-4AED-81D0-7B6D580ED860.mp4",
"fileName": "video3DE71189-66FF-4AED-81D0-7B6D580ED860.mp4",
"lastModified": "2025-03-28T18:33:03.000Z"
}
],
"capturePoints": []
},
{
"uuid": "7f4ae09a-ee12-40f3-8ec1-3bf6db56e7f0",
"name": "A1",
"area": null,
"bathroomAmount": 1,
"bedroomAmount": 1,
"engrainId": "197190",
"spinnerLink": "https://tour.seenic.io/?spinnerId=2085",
"tourLink": "https://tour.seenic.io/?locationId=520",
"fallBackTourLink": null,
"plans": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/7f4ae09a-ee12-40f3-8ec1-3bf6db56e7f0/content/plans/A1-main.jpg",
"fileName": "A1-main.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
},
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/7f4ae09a-ee12-40f3-8ec1-3bf6db56e7f0/content/plans/A1-secondary.jpg",
"fileName": "A1-secondary.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
}
],
"images": [],
"videos": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/7f4ae09a-ee12-40f3-8ec1-3bf6db56e7f0/content/videos/videoDB4A3F13-ACC0-46C2-93FF-BE31E3F8B708.mp4",
"fileName": "videoDB4A3F13-ACC0-46C2-93FF-BE31E3F8B708.mp4",
"lastModified": "2025-03-28T18:31:53.000Z"
}
],
"capturePoints": []
}
]
Get 3dExplorer's units
GET /location/{locationId}/units
Returns a list of units for the given location.
- Base URL:
https://data-api.seenic.io - Path params
locationId(string | number): Location identifier
Example request
curl "https://data-api.seenic.io/location/42/units"
Response
The response body is JSON.
Example response
[
{
"uuid": "3f33605e-c8b5-484f-a838-6466ed23627c",
"unitNumber": "12102",
"price": null,
"hidePrice": false,
"area": 826,
"engrainId": "4078810",
"displayName": null,
"quarter": "1",
"building": "12",
"section": "1",
"floor": "1",
"unitDescription": null,
"seenicId": "Q1B12S1F1U12102",
"availabilityStatus": "unavailable",
"availabilityDate": null,
"floorPlan": {
"uuid": "f69644f4-99ce-4f8f-8569-94ec765920b3",
"name": "A2",
"area": null,
"bathroomAmount": 1,
"bedroomAmount": 1,
"engrainId": "197194",
"spinnerLink": "https://tour.seenic.io/?spinnerId=2069",
"tourLink": "https://tour.seenic.io/?locationId=521",
"fallBackTourLink": null,
"plans": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/f69644f4-99ce-4f8f-8569-94ec765920b3/content/plans/A2-main.jpg",
"fileName": "A2-main.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
},
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/f69644f4-99ce-4f8f-8569-94ec765920b3/content/plans/A2-secondary.jpg",
"fileName": "A2-secondary.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
}
],
"images": [],
"videos": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/f69644f4-99ce-4f8f-8569-94ec765920b3/content/videos/video3DE71189-66FF-4AED-81D0-7B6D580ED860.mp4",
"fileName": "video3DE71189-66FF-4AED-81D0-7B6D580ED860.mp4",
"lastModified": "2025-03-28T18:33:03.000Z"
}
],
"capturePoints": []
},
"explorerId": "42",
"images": [],
"videos": [],
"plans": [],
"balconies": [],
"screenshots": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/units/3f33605e-c8b5-484f-a838-6466ed23627c/content/screenshots/Q1B12S1F1U12102.webp",
"fileName": "Q1B12S1F1U12102.webp",
"lastModified": "2026-06-29T09:13:03.000Z"
}
],
"tourLink": null,
"fallbackTourLink": null,
"realPageUnitId": null,
"realPagePropertyId": null,
"applyUrl": "https://8830127.onlineleasing.realpage.com/?SearchUrl=https%3A%2F%2F8830127.onlineleasing.realpage.com%2F&UnitId=86",
"revenueManagementPricesUrl": null,
"revenueManagementDatesUrl": null,
"expensesCalculatorLink": null,
"balconyTabName": "Balcony view",
"customField1Status": true,
"customField2Status": true,
"customField3Status": true,
"customField4Status": true,
"customField1Name": "Pets",
"customField2Name": "Parking",
"customField3Name": "Pond View",
"customField4Name": "Smoking",
"unknownProviderId": null
},
{
"uuid": "3a629b84-dfb8-40fd-a2e0-c91d00ff2851",
"unitNumber": "4202",
"price": 1400,
"hidePrice": false,
"area": 826,
"engrainId": "4078606",
"displayName": null,
"quarter": "1",
"building": "4",
"section": "1",
"floor": "2",
"unitDescription": null,
"seenicId": "Q1B4S1F2U4202",
"availabilityStatus": "available",
"availabilityDate": "2026-07-28T00:00:00.000Z",
"floorPlan": {
"uuid": "f69644f4-99ce-4f8f-8569-94ec765920b3",
"name": "A2",
"area": null,
"bathroomAmount": 1,
"bedroomAmount": 1,
"engrainId": "197194",
"spinnerLink": "https://tour.seenic.io/?spinnerId=2069",
"tourLink": "https://tour.seenic.io/?locationId=521",
"fallBackTourLink": null,
"plans": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/f69644f4-99ce-4f8f-8569-94ec765920b3/content/plans/A2-main.jpg",
"fileName": "A2-main.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
},
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/f69644f4-99ce-4f8f-8569-94ec765920b3/content/plans/A2-secondary.jpg",
"fileName": "A2-secondary.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
}
],
"images": [],
"videos": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/f69644f4-99ce-4f8f-8569-94ec765920b3/content/videos/video3DE71189-66FF-4AED-81D0-7B6D580ED860.mp4",
"fileName": "video3DE71189-66FF-4AED-81D0-7B6D580ED860.mp4",
"lastModified": "2025-03-28T18:33:03.000Z"
}
],
"capturePoints": []
},
"explorerId": "42",
"images": [],
"videos": [],
"plans": [],
"balconies": [],
"screenshots": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/units/3a629b84-dfb8-40fd-a2e0-c91d00ff2851/content/screenshots/Q1B4S1F2U4202.webp",
"fileName": "Q1B4S1F2U4202.webp",
"lastModified": "2026-06-29T09:02:46.000Z"
}
],
"tourLink": null,
"fallbackTourLink": null,
"realPageUnitId": null,
"realPagePropertyId": null,
"applyUrl": "https://8830127.onlineleasing.realpage.com/?SearchUrl=https%3A%2F%2F8830127.onlineleasing.realpage.com%2F&UnitId=102",
"revenueManagementPricesUrl": null,
"revenueManagementDatesUrl": null,
"expensesCalculatorLink": null,
"balconyTabName": "Balcony view",
"customField1Status": true,
"customField2Status": true,
"customField3Status": true,
"customField4Status": true,
"customField1Name": "Pets",
"customField2Name": "Parking",
"customField3Name": "Pond View",
"customField4Name": "Smoking",
"unknownProviderId": null
}
]
Get 3dExplorer's unit by seenicId
GET /location/{locationId}/units/{seenicId}
Returns a single unit for the given location, identified by its seenicId.
- Base URL:
https://data-api.seenic.io - Path params
locationId(string | number): Location identifierseenicId(string): Seenic unit identifier (for exampleQ1B12S1F1U12102)
Example request
curl "https://data-api.seenic.io/location/42/units/Q1B12S1F1U12102"
Response
The response body is JSON.
Example response
{
"uuid": "3f33605e-c8b5-484f-a838-6466ed23627c",
"unitNumber": "12102",
"price": null,
"hidePrice": false,
"area": 826,
"engrainId": "4078810",
"displayName": null,
"quarter": "1",
"building": "12",
"section": "1",
"floor": "1",
"unitDescription": null,
"seenicId": "Q1B12S1F1U12102",
"availabilityStatus": "unavailable",
"availabilityDate": null,
"floorPlan": {
"uuid": "f69644f4-99ce-4f8f-8569-94ec765920b3",
"name": "A2",
"area": null,
"bathroomAmount": 1,
"bedroomAmount": 1,
"engrainId": "197194",
"spinnerLink": "https://tour.seenic.io/?spinnerId=2069",
"tourLink": "https://tour.seenic.io/?locationId=521",
"fallBackTourLink": null,
"plans": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/f69644f4-99ce-4f8f-8569-94ec765920b3/content/plans/A2-main.jpg",
"fileName": "A2-main.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
},
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/f69644f4-99ce-4f8f-8569-94ec765920b3/content/plans/A2-secondary.jpg",
"fileName": "A2-secondary.jpg",
"lastModified": "2025-01-01T00:00:00.000Z"
}
],
"images": [],
"videos": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/floorplans/f69644f4-99ce-4f8f-8569-94ec765920b3/content/videos/video3DE71189-66FF-4AED-81D0-7B6D580ED860.mp4",
"fileName": "video3DE71189-66FF-4AED-81D0-7B6D580ED860.mp4",
"lastModified": "2025-03-28T18:33:03.000Z"
}
],
"capturePoints": []
},
"explorerId": "42",
"images": [],
"videos": [],
"plans": [],
"balconies": [],
"screenshots": [
{
"link": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/units/3f33605e-c8b5-484f-a838-6466ed23627c/content/screenshots/Q1B12S1F1U12102.webp",
"fileName": "Q1B12S1F1U12102.webp",
"lastModified": "2026-06-29T09:13:03.000Z"
}
],
"tourLink": null,
"fallbackTourLink": null,
"realPageUnitId": null,
"realPagePropertyId": null,
"applyUrl": "https://8830127.onlineleasing.realpage.com/?SearchUrl=https%3A%2F%2F8830127.onlineleasing.realpage.com%2F&UnitId=86",
"revenueManagementPricesUrl": null,
"revenueManagementDatesUrl": null,
"expensesCalculatorLink": null,
"balconyTabName": "Balcony view",
"customField1Status": true,
"customField2Status": true,
"customField3Status": true,
"customField4Status": true,
"customField1Name": "Pets",
"customField2Name": "Parking",
"customField3Name": "Pond View",
"customField4Name": "Smoking",
"unknownProviderId": null
}
Get 3dExplorer's amenities
GET /location/{locationId}/amenities
Returns the list of amenities for the given location.
- Base URL:
https://data-api.seenic.io - Path params
locationId(string | number): Location identifier
Example request
curl "https://data-api.seenic.io/location/42/amenities"
Response
The response body is JSON.
Example response
[
{
"uuid": "627b0781-8f60-4cc2-8f29-d4d24c5b44d8",
"name": "Outdoor Clubroom",
"link": "https://tour.seenic.io/?locationId=509",
"fallBackLink": null,
"icon": "amenity-icons/couch.svg",
"order": 0
},
{
"uuid": "c0f31584-2e97-4ca9-8fbb-eb9da5b1eb2b",
"name": "Clubroom",
"link": "https://tour.seenic.io/?locationId=508",
"fallBackLink": null,
"icon": "amenity-icons/couch.svg",
"order": 1
},
{
"uuid": "15acfd27-a1bc-45d6-9cb1-2d17154eec66",
"name": "Pool",
"link": "https://tour.seenic.io/?locationId=510",
"fallBackLink": null,
"icon": "amenity-icons/waves.svg",
"order": 2
},
{
"uuid": "c20f4065-e5ea-4bcd-8c3c-6ebf711fc6b5",
"name": "Lakeside",
"link": "https://tour.seenic.io/?locationId=513",
"fallBackLink": "",
"icon": "amenity-icons/sunlounger.svg",
"order": 3
},
{
"uuid": "b3c68f96-9fe6-4891-aa57-41845ebab0b0",
"name": "Dogpark",
"link": "https://tour.seenic.io/?locationId=514",
"fallBackLink": null,
"icon": "amenity-icons/dog.svg",
"order": 4
},
{
"uuid": "fc707dc2-f304-4c9a-8154-6ae0b4714c6f",
"name": "Fitness",
"link": "https://tour.seenic.io/?locationId=511",
"fallBackLink": "",
"icon": "amenity-icons/gym.svg",
"order": 5
}
]
Get 3dExplorer's sitemap
GET /location/{locationId}/sitemap
Returns sitemap items for the given location.
- Base URL:
https://data-api.seenic.io - Path params
locationId(string | number): Location identifier
Example request
curl "https://data-api.seenic.io/location/42/sitemap"
Response
The response body is JSON.
Example response
[
{
"svgUrl": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/maps/b323d2c0-f3c7-4266-acd9-a23cd578d73a.svg",
"floor": "1",
"backgroundUrl": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/maps/backgrounds/f97b498c-47c5-4372-8571-60cce32f654e.webp"
},
{
"svgUrl": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/maps/9ff461fb-8f2b-41bb-9357-5df4832032ed.svg",
"floor": "2",
"backgroundUrl": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/maps/backgrounds/583e8794-9474-4fc5-b5cd-e58bc17d9c13.webp"
},
{
"svgUrl": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/maps/87168ae4-e8fb-443a-8e8b-8a9db72357a2.svg",
"floor": "3",
"backgroundUrl": "https://content.3dexplorer.seenic.io/locations/1752c806-620c-43e0-8ccd-d3a8d8f97cac/maps/backgrounds/4ce46cf4-ecc5-471c-8000-adbeac04160d.webp"
}
]
Get 3dExplorer's neighborhood map
GET /location/{locationId}/neighborhood-map
Returns neighborhood map configuration for the given location, including map camera settings, property polygon boundaries, and nearby points of interest grouped by category in routes. Each route item includes place metadata and driving directions as coordinate arrays in dropdownItemCoordinates.
- Base URL:
https://data-api.seenic.io - Path params
locationId(string | number): Location identifier
Example request
curl "https://data-api.seenic.io/location/42/neighborhood-map"
Response
The response body is JSON.
Example response
{
"gmapToken": null,
"gmapCenterPoint": {
"lat": 30.476146424383032,
"lng": -81.64927849998078
},
"gmapAltitude": null,
"polygonAltitude": 15,
"distance": 986,
"horizonAngle": 29,
"verticalAngle": 50,
"polygonCoordinates": [
{
"lat": 30.477557583716248,
"lng": -81.64792346795959
},
{
"lat": 30.477018557932453,
"lng": -81.64711543503932
},
{
"lat": 30.477794937291158,
"lng": -81.64533829134777
},
{
"lat": 30.47936201265461,
"lng": -81.64496834989912
},
{
"lat": 30.47947810136191,
"lng": -81.64524143362138
},
{
"lat": 30.480004436223265,
"lng": -81.64531267818478
},
{
"lat": 30.480053745289386,
"lng": -81.64596685538329
},
{
"lat": 30.479459875332562,
"lng": -81.64595174896355
},
{
"lat": 30.4794462911748,
"lng": -81.64749003745194
}
],
"routes": [
{
"category": "Education",
"items": [
{
"id": "f0f7bb4d-35d7-494c-a435-c7e898f30358",
"lat": 30.476146424383032,
"lng": -81.64927849998078,
"category": "Education",
"dropdownItemName": "St Patrick Catholic Church",
"dropdownItemRating": 4.3,
"dropdownItemCoordinates": [
{
"lat": 30.47617,
"lng": -81.64924
},
{
"lat": 30.47575,
"lng": -81.64895
},
{
"lat": 30.47575,
"lng": -81.64895
}
],
"dropdownItemDistance": "3.0 mi",
"dropdownItemDuration": "9 mins",
"language": "en",
"placeId": "ChIJQypvT0Gw5YgR2LS9K9p4XQQ",
"displayPlaceName": "St Patrick Catholic Church",
"lastModified": "2026-06-09T12:21:35.394Z"
}
]
}
]
}