> ## Documentation Index
> Fetch the complete documentation index at: https://docs-v2.ard.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get overrides for a location

> Replies with JSON object containing the hourly and daily overrides for a single location



## OpenAPI

````yaml api-reference/pinpoint/openapi.json get /overrides/{id}
openapi: 3.0.1
info:
  title: Pinpoint API
  description: >-
    Weather forecast API providing hourly and daily forecasts, location
    information, and weather parameters
  version: 1.0.0
servers:
  - url: http://pinpoint.devops.arabiaweather.com
    description: Development API server
  - url: http://n01.pinpoint.devops.arabiaweather.com
    description: Development node n01
  - url: http://n02.pinpoint.devops.arabiaweather.com
    description: Development node n02
  - url: http://n03.pinpoint.devops.arabiaweather.com
    description: Development node n03
  - url: http://n04.pinpoint.devops.arabiaweather.com
    description: Development node n04
  - url: http://n05.pinpoint.devops.arabiaweather.com
    description: Development node n05
  - url: http://internal-tools-pinpoint.devops.arabiaweather.com
    description: Internal tools API server
security: []
tags:
  - name: forecast
  - name: parameters
  - name: location
  - name: admin
  - name: debug
paths:
  /overrides/{id}:
    get:
      tags:
        - forecast
      summary: Get overrides for a location
      description: >-
        Replies with JSON object containing the hourly and daily overrides for a
        single location
      parameters:
        - name: id
          in: path
          description: Location ID or comma-separated list of location IDs
          required: true
          example: ''
          schema:
            type: string
        - name: start
          in: query
          description: >-
            Start time for the forecast (e.g., 'now', 'today', or ISO date
            string)
          required: false
          schema:
            type: string
            default: now
        - name: interval
          in: query
          description: Forecast interval in hours
          required: false
          schema:
            type: integer
            default: 24
        - name: parameters
          in: query
          description: Comma-separated list of weather parameters to include
          required: false
          schema:
            type: string
        - name: hourly
          in: query
          description: Whether to include hourly overrides
          required: false
          schema:
            type: boolean
            default: true
      responses:
        '200':
          description: Weather overrides data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OverridesResponse'
          headers: {}
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          headers: {}
        '404':
          description: Location not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          headers: {}
      deprecated: false
      security: []
components:
  schemas:
    OverridesResponse:
      type: object
      properties:
        locations:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                description: Location ID
              hourly:
                type: array
                description: Hourly overrides data
                items:
                  type: object
                  properties: {}
              daily:
                type: array
                description: Daily overrides data
                items:
                  type: object
                  properties: {}
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
        statusCode:
          type: integer
          description: HTTP status code
        statusMessage:
          type: string
          description: HTTP status message
      example:
        error: Location not found
        statusCode: 404
        statusMessage: Not Found

````