---
title: "GeoCodeResponse"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-listing-api-2-0-0/versions/6459c118-c2b9-484e-816d-5657457559e4/schemas/GeoCodeResponse"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-listing-api-2-0-0/versions/6459c118-c2b9-484e-816d-5657457559e4.md

# GeoCodeResponse

Details of the geographical coordinates for a location.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Listing API
  version: 2.0.0
servers:
  - url: https://marketplace-api.centraldispatch.com
    description: Production server
components:
  schemas:
    GeoCodeResponse:
      type: object
      properties:
        longitude:
          type: number
          description: The longitude of the location.
          format: double
          example: -117.91836265987132
        latitude:
          type: number
          description: The latitude of the location.
          format: double
          example: 33.81228788622535
      description: Details of the geographical coordinates for a location.
      nullable: true
```
