# Current weather at Detroit Metro, MI (KDTW)

**Use case:** 

Station KDTW is the official National Weather Service observation site at Detroit Metro, MI. It sits at 42.231, -83.331, 636 ft above sea level. This example returns its latest report: temperature, dew point, humidity, wind direction and speed, gusts, visibility, pressure and the text description recorded, with the timestamp of the reading. Add more station ids to pull a set in one run.

## Input

```json
{
  "stations": [
    "KDTW"
  ],
  "maxRetries": 3
}
```

## Output

```json
{
  "ok": {
    "label": "OK",
    "format": "boolean"
  },
  "stationId": {
    "label": "Station",
    "format": "string"
  },
  "stationName": {
    "label": "Name",
    "format": "string"
  },
  "observedAt": {
    "label": "Observed",
    "format": "string"
  },
  "textDescription": {
    "label": "Conditions",
    "format": "string"
  },
  "temperatureC": {
    "label": "Temp C",
    "format": "number"
  },
  "temperatureF": {
    "label": "Temp F",
    "format": "number"
  },
  "relativeHumidityPct": {
    "label": "Humidity %",
    "format": "number"
  },
  "windSpeedKmh": {
    "label": "Wind km/h",
    "format": "number"
  },
  "windGustKmh": {
    "label": "Gust km/h",
    "format": "number"
  },
  "visibilityM": {
    "label": "Visibility m",
    "format": "number"
  },
  "fieldsMeasured": {
    "label": "Measured",
    "format": "integer"
  },
  "fieldsMissing": {
    "label": "Missing",
    "format": "integer"
  },
  "scope": {
    "label": "Asked for",
    "format": "string"
  },
  "resolvedFromPoint": {
    "label": "From point",
    "format": "string"
  },
  "reason": {
    "label": "Why it failed",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [US Current Weather Observations API - NWS Station Temperature](https://apify.com/neverempty/us-weather-observations.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neverempty/us-weather-observations.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/neverempty/us-weather-observations.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
