Skedulo Timezone API

The Timezone API from Skedulo — 1 operation(s) for timezone.

Operations 1

GET /timezone Return timezone information for a location

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/skedulo-timezone-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

skedulo-timezone-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Authentication Admin Timezone API
  description: Skedulo Authentication API
  version: 1.0.0
servers:
- url: https://api.skedulo.com/auth
- url: https://api.uk.skedulo.com/auth
- url: https://api.ca.skedulo.com/auth
- url: https://api.au.skedulo.com/auth
tags:
- name: Timezone
paths:
  /timezone:
    get:
      security:
      - Authorization: []
      parameters:
      - in: query
        name: location
        description: Latitude and Longitude of the location to find the timezone for
        required: true
        explode: false
        schema:
          type: array
          items:
            type: number
          minItems: 2
          maxItems: 2
      - in: query
        name: timestamp
        description: Seconds since 1970 for the timezone to return (used to compute DST offset)
        required: true
        schema:
          type: integer
      summary: Return timezone information for a location
      description: Given a location and timestamp return the timezone name, the offset and Daylight Savings offset.
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimezoneResponse'
        default:
          description: unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      tags:
      - Timezone
components:
  schemas:
    TimezoneResponse:
      type: object
      properties:
        dstOffset:
          description: The Daylight Savings time offset in seconds or 0 if no Daylight Savings time is in effect.
          type: number
        rawOffset:
          description: The offset in seconds from UTC for the given location.
          type: number
        timeZoneId:
          description: The id of the time zone, (e.g "Australia/Brisbane" as defined by the Unicode Common Locale Data Repository (CLDR) project.
          type: string
      example:
        dstOffset: 0
        rawOffset: 36000
        timeZoneId: Australia/Brisbane
    Error:
      type: object
      required:
      - errorType
      - message
      properties:
        errorType:
          type: string
        message:
          type: string
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      bearerFormat: JWT