# Todoist Integrations Scraper (`crawlerbros/todoist-integrations-scraper`) Actor

Scrape the Todoist Integrations directory - 130+ apps and tools that connect with Todoist. Browse by category or search by keyword. Returns names, descriptions, categories, icon URLs, developer links, and supported languages.

- **URL**: https://apify.com/crawlerbros/todoist-integrations-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Automation, Integrations, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Todoist Integrations Scraper

Scrape the **Todoist integrations directory** — the full catalog of apps and services that connect to Todoist, spanning calendars, email, messaging, automation, note-taking, time tracking, AI agents and browser extensions. Browse listings across all 13 categories, or run a deeper pass that opens each integration's own page for developer links, supported languages, and full category tagging. HTTP-only against `todoist.com`. No auth, no proxy.

### What this actor does

- **Two modes:** `browse` (fast sweep of category listing pages) and `search` (opens every integration's detail page for richer data)
- **13 categories** exposed as a dropdown — AI Agents, Automation, Browsers, Calendars, Email, Messaging, Note Taking, Productivity Tracking, Project Management, Task Management, Time Tracking, Todoist Extensions, Other
- **Keyword filtering:** match on integration name and description in either mode
- **Deduplicated:** integrations listed under several categories are emitted once
- **Empty fields are omitted**

### Output per integration

- `slug` — Todoist directory slug, e.g. `google-calendar`
- `name` — integration name
- `description` — what the integration does
- `category` — primary category
- `categorySlug` — slug form of the category (browse mode)
- `categories` — every category the integration is listed under (search mode)
- `applicationCategory` — application type as published on the detail page (search mode)
- `languages` — supported interface languages (search mode)
- `developerUrl` — the integration developer's own site (search mode)
- `iconUrl` — integration logo
- `integrationUrl`, `sourceUrl` — the integration's page on todoist.com
- `recordType: "integration"`, `scrapedAt`

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `mode` | string | `browse` | `browse` (listing pages only, fast) / `search` (detail pages, richer) |
| `query` | string | – | Keyword matched against name and description |
| `category` | string | – | One of the 13 categories, or empty for all |
| `maxItems` | int | `100` | Hard cap (1–10000) |

#### Example: the entire directory

```json
{
  "mode": "browse",
  "maxItems": 500
}
```

#### Example: one category

```json
{
  "mode": "browse",
  "category": "Calendars",
  "maxItems": 100
}
```

#### Example: keyword search with full detail

```json
{
  "mode": "search",
  "query": "calendar",
  "maxItems": 50
}
```

#### Example: AI agent integrations with developer links

```json
{
  "mode": "search",
  "category": "AI Agents",
  "maxItems": 100
}
```

### Use cases

- **Competitive research** — see which tools integrate with Todoist and where the gaps are
- **Partnership and BD prospecting** — build a list of integration developers with their websites
- **Ecosystem tracking** — snapshot the directory periodically to watch categories grow
- **App directories** — populate a "works with Todoist" section with logos and descriptions
- **Market sizing** — count integrations per category to gauge where the ecosystem is concentrated
- **Product planning** — check whether a category you're entering is already crowded

### FAQ

**What is the Todoist integrations directory?**  Todoist's public catalog of third-party apps, browser extensions, and automation services that connect to it. See [todoist.com/integrations](https://todoist.com/integrations).

**Is this affiliated with Todoist or Doist?**  No. This is a third-party actor reading their public directory pages.

**Do I need a Todoist account?**  No. The directory is public and requires no login.

**Which mode should I use?**  Use `browse` when you want the whole catalog quickly with names, descriptions, categories, and logos. Use `search` when you need developer websites, supported languages, or the complete category list per integration — it opens one page per integration, so it's slower.

**Why do some integrations appear in more than one category?**  Todoist tags many integrations under several categories. `browse` deduplicates them and keeps the first category it saw; `search` reports the full set in `categories`.

**Why is `developerUrl` missing for some integrations?**  It's derived from the outbound links on the integration's page. First-party Todoist extensions and integrations that only link back to Todoist have no external developer site to report.

**Does this return API keys or setup instructions?**  No. It returns directory metadata. Setup steps and credentials live behind the linked `integrationUrl` and the developer's own documentation.

**Can I filter by category and keyword together?**  Yes. The category narrows which listings are fetched, and the keyword then matches names and descriptions within them.

**How fresh is the data?**  Live at run time. Todoist updates the directory as partners are added or removed, so re-running gives you the current catalog.

# Actor input Schema

## `mode` (type: `string`):

How to scrape Todoist integrations.

## `query` (type: `string`):

Text to match against integration name and description.

## `category` (type: `string`):

Filter integrations by category.

## `maxItems` (type: `integer`):

Hard cap on emitted records.

## Actor input object example

```json
{
  "mode": "browse",
  "category": "",
  "maxItems": 100
}
```

# Actor output Schema

## `integrations` (type: `string`):

Dataset containing all scraped Todoist integrations.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "mode": "browse",
    "category": "",
    "maxItems": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/todoist-integrations-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "mode": "browse",
    "category": "",
    "maxItems": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/todoist-integrations-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "mode": "browse",
  "category": "",
  "maxItems": 100
}' |
apify call crawlerbros/todoist-integrations-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,crawlerbros/todoist-integrations-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/6xWgN2DnbuMBFJjED/builds/6unXJO2YXMrhugugR/openapi.json
