---
title: "GET when-human-timestamp"
url: "https://sbx.developer-internal.sanofi.com/apis/httpbin-1/versions/da3754ed-f573-4cf9-a100-7688d77483f4/paths/when-human-timestamp/get"
---

> Full API specification: https://sbx.developer-internal.sanofi.com/apis/httpbin-1/versions/da3754ed-f573-4cf9-a100-7688d77483f4.md

# /when/{human-timestamp}

`GET` `/when/{human-timestamp}`

## Path parameters

- `human-timestamp` (required)

## Responses

- `200` - OK
- `500` - oops

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: httpbin
  version: 1.0-oas3
servers:
  - url: https://httpbin.org
  - url: http://httpbin.apim.eu/
  - url: https://eu.httpbin.org
  - url: http://eu.httpbin.org
  - url: http://localhost:8000/test
paths:
  /when/{human-timestamp}:
    get:
      tags:
        - time
      servers:
        - url: http://now.httpbin.org
        - url: https://now.httpbin.org
      parameters:
        - in: path
          name: human-timestamp
          required: true
          schema:
            anyOf:
              - type: string
      responses:
        "200":
          $ref: "#/components/responses/TimestampResponse"
        "500":
          description: oops
components:
  responses:
    TimestampResponse:
      description: OK
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/TimestampWrapper"
  schemas:
    TimestampWrapper:
      type: object
      properties:
        timestamp:
          $ref: "#/components/schemas/Timestamp"
      required:
        - timestamp
    Timestamp:
      type: object
      properties:
        epoch:
          type: number
          format: double
          example: 1498229228.0671656
        slang_date:
          type: string
          example: today
        slang_time:
          type: string
          example: now
        iso8601:
          type: string
          example: 2017-06-23T14:47:08.067166Z
        rfc2822:
          type: string
          example: Fri, 23 Jun 2017 14:47:08 GMT
        rfc3339:
          type: string
          example: 2017-06-23T14:47:08.06Z
      required:
        - epoch
        - slang_date
        - slang_time
        - iso8601
        - rfc2822
        - rfc3339
      example:
        epoch: 1485183550.84644
        slang_date: Jan 23
        slang_time: 4 months ago
        iso8601: 2017-01-23T14:59:10.846440Z
        rfc2822: Mon, 23 Jan 2017 14:59:10 GMT
        rfc3339: 2017-01-23T14:59:10.84Z
```
