# Upkeep Subscriptions

### Introduction

Upkeeps are contracts you set up on Chainlink Automation that allow anyone to run a smart contract function automatically according to a custom predefined schedule. Time-based upkeeps are similar to cron jobs. Upkeeps are a part of the [Chainlink Automation Product](https://docs.chain.link/chainlink-automation).

### Usage

To start using this module, initialize the Dev3 SDK & Chainlink KeeperRegsitry instances first, like this:

```typescript
import { Dev3SDK, KeeperRegistry } from "dev3-sdk";

var dev3: Dev3SDK;
var keeperRegistry: KeeperRegistry;

async function init() {
    dev3 = new Dev3SDK("<your api key>", "<your project id>");
    keeperRegistry = new KeeperRegistry();
    return keeperRegistry.init();
}

init();
```

Once initialization function is finished, you can start using the Upkeep Subscriptions module by interacting with the functions registry object!


---

# Agent Instructions: 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://docs.dev3.sh/welcome-to-dev3/integrations/chainlink-subscriptions/upkeep-subscriptions.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.
