---
title: "Stop"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-market-intelligence-api-1-0-0/versions/82fba884-d61c-486f-b373-5d8237efb63b/schemas/Stop"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-market-intelligence-api-1-0-0/versions/82fba884-d61c-486f-b373-5d8237efb63b.md

# Stop

Details of a stop.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Market Intelligence API
  version: 1.0.0
servers:
  - url: https://api.centraldispatch.com
    description: Production server
components:
  schemas:
    Stop:
      type: object
      properties:
        stopNumber:
          type: integer
          description: The sequential number of the stop along the route e.g. 1 is the
            pick up stop and 2 is the delivery stop.
          format: int32
          example: 1
        streetAddress1:
          type: string
          description: The street address.
          nullable: true
          example: 345 W Elm St.
        streetAddress2:
          type: string
          description: Additional street address line.
          nullable: true
          example: 2nd Floor
        city:
          type: string
          description: The city. Required if valid `latitude` and `longitude` are not
            provided.
          nullable: true
          example: Anaheim
        state:
          type: string
          description: The state. Required if valid `latitude` and `longitude` are not
            provided.
          nullable: true
          example: CA
        country:
          type: string
          description: The country code. US or CA.
          nullable: true
          example: US
        postalCode:
          type: string
          description: The ZIP code. Must be a valid United States ZIP code or Canadian
            postal code.
          nullable: true
          example: "92802"
        latitude:
          type: number
          description: The latitude of the location. Required if valid `city` and `state`
            are not provided.
          format: double
          nullable: true
          example: 33.81228788622535
        longitude:
          type: number
          description: The longitude of the location. Required if valid `city` and `state`
            are not provided.
          format: double
          nullable: true
          example: -117.91836265987132
      description: Details of a stop.
```
