> For the complete documentation index, see [llms.txt](https://help.contouron.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.contouron.com/features/content-calendar/timezone.md).

# Timezone

> For the complete documentation index, see [llms.txt](https://help.contouron.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.contouron.com/features/content-calendar/timezone.md).

## Timezone

### What is the calendar timezone?

Contouron uses your computer's local timezone. The time shown in your computer's clock is the timezone used by Contouron to schedule posts.

You can check this by creating a test post scheduled 5 minutes from now.

***

### Scheduling via API or n8n

When you schedule posts through the API or n8n, Contouron does not know your local timezone. You must include the timezone offset in your timestamp.

Send the `scheduledTime` field as a full ISO-8601 string with a timezone offset:

```
2026-02-17T09:04:00-03:00
```

This tells Contouron: "publish at 9:04 AM in UTC-3 (e.g. Asuncion, Paraguay)."

If you send a timestamp without a timezone offset (for example, `2026-02-16 08:12`), Contouron treats it as UTC. If your local timezone is UTC-3, the post will publish 3 hours earlier than you intended.

#### Examples

| Goal                        | Correct format              |
| --------------------------- | --------------------------- |
| 9:00 AM in New York (UTC-5) | `2026-02-17T09:00:00-05:00` |
| 9:00 AM in London (UTC+0)   | `2026-02-17T09:00:00+00:00` |
| 9:00 AM in Berlin (UTC+1)   | `2026-02-17T09:00:00+01:00` |
| 9:00 AM in Asuncion (UTC-3) | `2026-02-17T09:00:00-03:00` |

Alternatively, convert your local time to UTC and append `Z`:

```
2026-02-17T12:04:00Z
```

#### Timezone in n8n + Google Sheets

If your scheduled time comes from a Google Sheet, it often has no timezone attached. Use an n8n "Date & Time" node to convert the value to ISO-8601 with the correct offset before passing it to the Contouron "Create Post" node.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.contouron.com/features/content-calendar/timezone.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
