{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":[]},"type":"markdown"},"seo":{"title":"🚧 Step-by-Step – Build Your First Charging Station Request","llmstxt":{"hide":false,"sections":[{"title":"Table of contents","includeFiles":["**/*"],"excludeFiles":[]}],"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"-step-by-step--build-your-first-charging-station-request","__idx":0},"children":["🚧 Step-by-Step – Build Your First Charging Station Request"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This tutorial walks you through ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["how to build a Charging Station API request"]}," step by step, to search for EV charging stations around a specific location."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-step-1--choose-the-geoserver","__idx":1},"children":["🧱 Step 1 – Choose the Geoserver"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["geoserver"]}," defines which geospatial dataset you want to use (e.g. OpenStreetMap or a custom dataset)."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"geoserver\": \"osm\"\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Most users can keep ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["\"default\""]},"."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-step-2--select-the-providers","__idx":2},"children":["🏢 Step 2 – Select the Provider(s)"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Choose one or more charging station providers. Always use:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"providers\": [\"ecoMovement\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This ensures compatibility with our standard coverage."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-step-3--set-the-search-mode","__idx":3},"children":["🧠 Step 3 – Set the Search Mode"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["mode"]}," controls whether the search uses local cache or provider APIs. Use the recommended setting:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"mode\": \"LOCAL_OR_REMOTE\"\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This mode will use local data if possible, or fall back to remote provider search when needed."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-step-4--define-the-center-coordinate","__idx":4},"children":["📍 Step 4 – Define the Center Coordinate"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Pick the center point for your search. Use WGS84 coordinates (decimal degrees):"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"coordinate\": {\n  \"lon\": 2.3412,\n  \"lat\": 48.8569\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 Tip: You can use a map tool like ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"https://www.google.com/maps?q=48.8543694,2.34014219"},"children":["Google Maps"]}," to find precise coordinates."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-step-5--set-the-search-radius","__idx":5},"children":["📏 Step 5 – Set the Search Radius"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Define how far (in meters) around your coordinate the system should look:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"radius\": 300\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Here, 300 meters = 0.3 km around the selected point."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🧪 Optional – Add Options (Advanced)"," ","You can request extra detail using the options field. For example, to show connector-level info:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"PATH_POINT\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["See ",{"$$mdtype":"Tag","name":"a","attributes":{"href":"/api-reference/ev-move---electric-mobility/chargingstation/tutorial/chargingstation_parameters#chargingstation_options_tutorial"},"children":["Charging Station Options"]}," for more."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-final-request-example","__idx":6},"children":["📦 Final Request Example"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Here is a complete example combining all the above steps:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"geoserver\": \"osm\",\n  \"providers\": [\"ecoMovement\"],\n  \"mode\": \"LOCAL_OR_REMOTE\",\n  \"radius\": 300,\n  \"coordinate\": {\n    \"lon\": 2.3412,\n    \"lat\": 48.8569\n  },\n  \"options\": [\"PATH_POINT\"]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔗 Send this via ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["POST"]}," to ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["/bgis/service/chargingstation/search/1.0"]}," ","Include header: ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Content-Type: application/json"]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-response-analysis","__idx":7},"children":["📥 Response Analysis"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"pools\": [\n    {\n      \"providerName\": \"ecoMovement\",\n      \"providerMode\": \"LOCAL\",\n      \"id\": \"8f709a26-466d-11e9-8601-42010a840003\",\n      \"sourceProvider\": \"Tesla Destination\",\n      \"updateDate\": 1753672005588,\n      \"brand\": \"Tesla Destination\",\n      \"nameOfPool\": \"Tesla Destination Charger Relais Christine\",\n      \"accessibility\": \"RESTRICTED\",\n      \"availabilityStatus\": \"NA\",\n      \"longitude\": 2.34014219,\n      \"latitude\": 48.8543694,\n      \"countryCode\": \"FRA\",\n      \"country\": \"FRA\",\n      \"postalCode\": \"75006\",\n      \"city\": \"6e Arrondissement\",\n      \"street\": \"3 Rue Christine\",\n      \"siteCategory\": \"ON_STREET\",\n      \"phoneNumber\": \"+(33)-(9)-70730850\",\n      \"chargingStations\": [\n        {\n          \"nature\": \"VGROUP\",\n          \"availabilityStatus\": \"NA\",\n          \"chargePasses\": [\n            {\n              \"id\": \"Tesla\",\n              \"title\": \"Tesla\",\n              \"networkName\": \"Tesla\"\n            }\n          ],\n          \"bookable\": false,\n          \"chargingPoints\": [\n            {\n              \"id\": \"491848_1\",\n              \"availabilityStatus\": \"NA\",\n              \"type\": 32,\n              \"connectorTypes\": [\n                {\n                  \"id\": 32,\n                  \"key\": \"TYPE_2-ATTACHED_CABLE\",\n                  \"operatorId\": \"491848_1_0\",\n                  \"deprecated\": false,\n                  \"name\": \"Type 2\",\n                  \"norm\": \"IEC 62196 Type 2 (Mennekes)\",\n                  \"maxPower\": 43,\n                  \"power\": 11,\n                  \"voltage\": 230,\n                  \"ampere\": 16,\n                  \"acSingle\": false,\n                  \"acThree\": true,\n                  \"dc\": false,\n                  \"cable\": true\n                }\n              ],\n              \"currentType\": \"AC_THREE_PHASES\",\n              \"voltage\": 230,\n              \"ampere\": 16,\n              \"power\": 11\n            }\n          ]\n        },\n        {\n          \"nature\": \"VGROUP\",\n          \"availabilityStatus\": \"NA\",\n          \"chargePasses\": [\n            {\n              \"id\": \"Tesla\",\n              \"title\": \"Tesla\",\n              \"networkName\": \"Tesla\"\n            }\n          ],\n          \"bookable\": false,\n          \"chargingPoints\": [\n            {\n              \"id\": \"491848_0\",\n              \"availabilityStatus\": \"NA\",\n              \"type\": 32,\n              \"connectorTypes\": [\n                {\n                  \"id\": 32,\n                  \"key\": \"TYPE_2-ATTACHED_CABLE\",\n                  \"operatorId\": \"491848_0_0\",\n                  \"deprecated\": false,\n                  \"name\": \"Type 2\",\n                  \"norm\": \"IEC 62196 Type 2 (Mennekes)\",\n                  \"maxPower\": 43,\n                  \"power\": 11,\n                  \"voltage\": 230,\n                  \"ampere\": 16,\n                  \"acSingle\": false,\n                  \"acThree\": true,\n                  \"dc\": false,\n                  \"cable\": true\n                }\n              ],\n              \"currentType\": \"AC_THREE_PHASES\",\n              \"voltage\": 230,\n              \"ampere\": 16,\n              \"power\": 11\n            }\n          ]\n        },\n        {\n          \"nature\": \"VGROUP\",\n          \"availabilityStatus\": \"NA\",\n          \"chargePasses\": [\n            {\n              \"id\": \"Tesla\",\n              \"title\": \"Tesla\",\n              \"networkName\": \"Tesla\"\n            }\n          ],\n          \"bookable\": false,\n          \"chargingPoints\": [\n            {\n              \"id\": \"491848_2\",\n              \"availabilityStatus\": \"NA\",\n              \"type\": 32,\n              \"connectorTypes\": [\n                {\n                  \"id\": 32,\n                  \"key\": \"TYPE_2-ATTACHED_CABLE\",\n                  \"operatorId\": \"491848_2_0\",\n                  \"deprecated\": false,\n                  \"name\": \"Type 2\",\n                  \"norm\": \"IEC 62196 Type 2 (Mennekes)\",\n                  \"maxPower\": 43,\n                  \"power\": 11,\n                  \"voltage\": 230,\n                  \"ampere\": 16,\n                  \"acSingle\": false,\n                  \"acThree\": true,\n                  \"dc\": false,\n                  \"cable\": true\n                }\n              ],\n              \"currentType\": \"AC_THREE_PHASES\",\n              \"voltage\": 230,\n              \"ampere\": 16,\n              \"power\": 11\n            }\n          ]\n        }\n      ],\n      \"summaryOfConnectorTypeIds\": [\n        32\n      ],\n      \"maxNominalPower\": 11,\n      \"numberOfChargingPoint\": 3\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When you send the request above, you receive a response containing a list of ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["charging station pools"]},". Below is a detailed breakdown of a typical response entry:"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔹 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Root Object: pools"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The root object is a list of ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["pools"]},", each representing a group of charging stations at a physical location. In this example, only one pool was returned."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-pool-information","__idx":8},"children":["🧾 Pool Information"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Field"},"children":["Field"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Description"},"children":["Description"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["id"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Unique ID of the pool"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["providerName"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Name of the data provider (e.g., ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ecoMovement"]},")"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["sourceProvider"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Real-world provider (e.g., ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Tesla Destination"]},")"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["brand"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Brand associated with the pool"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["nameOfPool"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Display name of the location"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["accessibility"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Whether the location is public or restricted (e.g., ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["RESTRICTED"]},")"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["updateDate"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Last update timestamp (Unix format)"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["siteCategory"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Category of the site (e.g., ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ON_STREET"]},")"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["countryCode"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["city"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["street"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["postalCode"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Address details"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["phoneNumber"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Contact number for the location"]}]}]}]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"-charging-stations-chargingstations","__idx":9},"children":["🔌 Charging Stations (chargingStations)"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Each pool contains one or more charging stations, represented by the chargingStations array."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Each station includes:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["nature"]},": Always ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["\"VGROUP\""]}," (grouped station)"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["availabilityStatus"]},": May be ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["\"NA\""]}," if real-time data is not available"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["chargePasses"]},": Accepted charge passes (e.g., ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Tesla"]},")"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["bookable"]},": Whether the station is reservable"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["chargingPoints"]},": One or more charging points available at this station"]}]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"-charging-points","__idx":10},"children":["⚡ Charging Points"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Each station includes one or more charging points, each with technical details:"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Field"},"children":["Field"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Description"},"children":["Description"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["id"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Unique ID for the charging point"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["availabilityStatus"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Real-time availability (if available)"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["type"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Internal connector type ID (e.g., 32)"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["currentType"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["AC or DC type (e.g., ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["AC_THREE_PHASES"]},")"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["voltage"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ampere"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["power"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Electrical specifications"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["connectorTypes"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Array with detailed connector specs (standard, cable, deprecated flag, etc.)"]}]}]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["➡️ In this example, all charging points are ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Type 2 (IEC 62196)"]},", with 11 kW power and three-phase AC."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"-summary-fields","__idx":11},"children":["🧮 Summary Fields"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Field"},"children":["Field"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Description"},"children":["Description"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["summaryOfConnectorTypeIds"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["List of unique connector type IDs in the pool (e.g., ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["[32]"]},")"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["maxNominalPower"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Maximum power across all charging points"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["numberOfChargingPoint"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Total number of charging points in the pool"]}]}]}]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"-in-summary","__idx":12},"children":["✅ In Summary"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This response tells you:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["There is one Tesla Destination charging location nearby."]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["It offers 3 Type 2 connectors, all rated at 11 kW."]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The location is restricted access."]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["No real-time availability info is provided (",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["availabilityStatus: NA"]},")."]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You can now use this structure to interpret any search results and optionally display them on a map or in your UI."]}]},"headings":[{"value":"🚧 Step-by-Step – Build Your First Charging Station Request","id":"-step-by-step--build-your-first-charging-station-request","depth":1},{"value":"🧱 Step 1 – Choose the Geoserver","id":"-step-1--choose-the-geoserver","depth":2},{"value":"🏢 Step 2 – Select the Provider(s)","id":"-step-2--select-the-providers","depth":2},{"value":"🧠 Step 3 – Set the Search Mode","id":"-step-3--set-the-search-mode","depth":2},{"value":"📍 Step 4 – Define the Center Coordinate","id":"-step-4--define-the-center-coordinate","depth":2},{"value":"📏 Step 5 – Set the Search Radius","id":"-step-5--set-the-search-radius","depth":2},{"value":"📦 Final Request Example","id":"-final-request-example","depth":2},{"value":"📥 Response Analysis","id":"-response-analysis","depth":2},{"value":"🧾 Pool Information","id":"-pool-information","depth":2},{"value":"🔌 Charging Stations (chargingStations)","id":"-charging-stations-chargingstations","depth":3},{"value":"⚡ Charging Points","id":"-charging-points","depth":3},{"value":"🧮 Summary Fields","id":"-summary-fields","depth":3},{"value":"✅ In Summary","id":"-in-summary","depth":3}],"frontmatter":{"seo":{"title":"🚧 Step-by-Step – Build Your First Charging Station Request"}},"lastModified":"2025-08-25T08:06:26.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/api-reference/ev-move---electric-mobility/chargingstation/tutorial/first_chargingstation_request","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}