# Atlantic City NOAA tide chart

**Use case:** 

Export official NOAA high and low tide times and predicted water levels for Atlantic City, New Jersey, over a two-day date range.

## Input

```json
{
  "stationIds": [
    "8534720"
  ],
  "startDate": "2026-09-17",
  "endDate": "2026-09-18",
  "datum": "MLLW",
  "units": "english",
  "timeZone": "lst_ldt",
  "maxItems": 20
}
```

## Output

```json
{
  "stationId": {
    "label": "Station ID",
    "format": "string"
  },
  "stationName": {
    "label": "Station name",
    "format": "string"
  },
  "eventType": {
    "label": "Event type",
    "format": "string"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "string"
  },
  "predictedWaterLevel": {
    "label": "Predicted level",
    "format": "number"
  },
  "units": {
    "label": "Units",
    "format": "string"
  },
  "datum": {
    "label": "Datum",
    "format": "string"
  },
  "timeZone": {
    "label": "Time zone mode",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "predictionSourceUrl": {
    "label": "Prediction source",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [NOAA Tide Predictions Scraper](https://apify.com/automation-lab/noaa-tide-predictions.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/noaa-tide-predictions.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/automation-lab/noaa-tide-predictions.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`).
