> For the complete documentation index, see [llms.txt](https://developers.gormic.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.gormic.com/sync-and-data-streaming/delta-exporting.md).

# Delta Exporting

Gormic supports **delta-based data exporting** to allow clients to efficiently sync only the data that has changed since a specific point in time.

### How Delta Export Works

Delta exporting uses three key fields to control and continue syncing:

| Field          | Description                                                                                                              |
| -------------- | ------------------------------------------------------------------------------------------------------------------------ |
| `updatedSince` | The ISO timestamp to fetch records **modified after**. Use this to start your export.                                    |
| `offset`       | A **cursor value** returned from the previous response, used to continue pagination **within the same `updatedSince`** . |

Continue until `next` is no longer included in the response, indicating that there are no more records to fetch.

> Export APIs for resources like **orders**, **products**, **reservations**, and more are documented individually in the **API Reference**.


---

# 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:

```
GET https://developers.gormic.com/sync-and-data-streaming/delta-exporting.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
