No logo available for Yandex Metrika to DuckDB connector icon

Load Yandex Metrika data to DuckDB

Build a Yandex Metrika to DuckDB pipeline with your coding agent. One prompt scaffolds it with the dltHub AI harness, plus the Yandex Metrika API base URL, auth, endpoints, and incremental loading.

SourceYandex MetrikaDestinationDuckDBIn-process analytical database. The default local destination for dlt pipelines.

Yandex Metrica is a web analytics service that provides an API for retrieving traffic statistics, managing tags, and accessing reporting data. Everything needed to build a working Yandex Metrika → DuckDB pipeline is on this page: the API's base URL, authentication, endpoints, pagination and incremental field — plus a prompt that hands the whole job to your coding agent.


Build your Yandex Metrika to DuckDB pipeline

Paste this prompt into Claude, Codex, or Cursor. The agent does the rest.

Prompt
Run uvx dlthub-init@latest to build a pipeline from Yandex Metrika to DuckDB and run it on dltHub

That scaffolds a dltHub workspace and installs the dltHub AI harness — the project rules, the secrets-management skill, and the dlt MCP server your agent needs to work safely. From there it reads the Yandex Metrika API, proposes the endpoints to load, then writes, runs and validates the pipeline while you review rather than type. Credentials are inspected through MCP tools, so your agent never reads secrets.toml itself. How the LLM-native workflow works →

Prefer to write it yourself? Every fact the agent uses is below.


Yandex Metrika API at a glance

Base URLhttps://api-metrika.yandex.net
Example endpointGET stat/v1/data
Records found atdata
Authenticationall requests require an OAuth access token in the Authorization header — sent in the Authorization header, prefixed OAuth
PaginationNot paginated
API referencehttps://yandex.com/dev/metrika/en/intro/authorization

These values come from the Yandex Metrika API reference — the authoritative source if anything here looks out of date.


How do I authenticate with the Yandex Metrika API?

Authentication is performed using an OAuth access token passed in the Authorization header as 'OAuth <access_token>'.

1. Get your credentials

  1. Go to the Yandex OAuth dashboard (https://oauth.yandex.com/) and click to create a new app. 2. Select 'For API access or debugging'. 3. Provide a name and email, and choose the required data access permissions (e.g., 'metrika:read' or 'metrika:write'). 4. Click 'Create app' to generate a 'ClientID'. 5. Navigate to the following URL in your browser, replacing <application_id> with your ClientID: https://oauth.yandex.com/authorize?response_type=token&client_id=<application_id>. 6. Follow the authorization prompt and copy the resulting access token from the URL or page.

2. Add them to .dlt/secrets.toml

[sources.yandex_metrika_source] access_token = "your_oauth_access_token_here"

dlt reads this file automatically at runtime. With the harness, the setup-secrets skill prompts you for the values and never handles the raw credential in chat. For production, see setting up credentials with dlt.


What Yandex Metrika data can I load into DuckDB?

These are the Yandex Metrika endpoints dlt can load into DuckDB:

ResourceEndpointMethodData selectorDescription
countersmanagement/v1/countersGETcountersList all counters associated with the user account.
goalsmanagement/v1/counter/{counterId}/goalsGETgoalsList all goals for a specific counter.
filtersmanagement/v1/counter/{counterId}/filtersGETfiltersList all filters for a specific counter.
reportsstat/v1/dataGETdataRetrieve statistical reporting data.
reports_by_timestat/v1/data/bytimeGETdataRetrieve time-aggregated reporting data.

How do I load only new Yandex Metrika records?

The Yandex Metrika API reference does not document a timestamp or sequence field for these endpoints, so there is nothing to advertise here as verified. Pick a field from the endpoints table above that increases with every write, then set it as the cursor_path.

{"name": "reports", "endpoint": { "path": "stat/v1/data", # Replace with a field that increases on every write. "incremental": {"cursor_path": "REPLACE_ME", "initial_value": "2024-01-01T00:00:00Z"}, }}

On the first run dlt loads everything from initial_value; on every run after that it requests only what changed and appends with write_disposition="merge" if you set a primary key. See incremental loading.


What does the generated Yandex Metrika pipeline look like?

A standard dlt REST API pipeline — the same code you would write by hand, loading management and reports from the Yandex Metrika API into DuckDB:

import dlt from dlt.sources.rest_api import RESTAPIConfig, rest_api_resources @dlt.source def yandex_metrika_source(access_token=dlt.secrets.value): config: RESTAPIConfig = { "client": { "base_url": "https://api-metrika.yandex.net", "auth": {"type": "bearer", "token": access_token}, }, "resources": [ {"name": "reports", "endpoint": {"path": "stat/v1/data", "data_selector": "data"}}, {"name": "counters", "endpoint": {"path": "management/v1/counters", "data_selector": "counters"}} ], } yield from rest_api_resources(config) def load_yandex_metrika_to_duckdb() -> None: pipeline = dlt.pipeline( pipeline_name="yandex_metrika_pipeline", destination="duckdb", dataset_name="yandex_metrika_data", ) load_info = pipeline.run(yandex_metrika_source()) print(load_info) if __name__ == "__main__": load_yandex_metrika_to_duckdb()

Run it with python yandex_metrika_pipeline.py. The agent iterates on this until it loads cleanly — you review and approve, rather than write it from scratch.


How do I query Yandex Metrika data in DuckDB?

dlt creates one table per resource. Query the loaded data with Python or SQL — or ask your agent to, through the MCP server's execute_sql_query tool.

Python (pandas DataFrame):

import dlt data = dlt.pipeline("yandex_metrika_pipeline").dataset() df = data.reports.df() print(df.head())

SQL:

SELECT * FROM yandex_metrika_data.reports LIMIT 10;

See querying your data with dataset and exploring it in marimo notebooks.


How do I deploy the Yandex Metrika to DuckDB pipeline in production?

The pipeline runs locally, which is ideal for prototyping and one-off analysis. When you need it on a schedule, monitored on every load, and shared with your team, deploy the same dlt code on the dltHub platform — no infrastructure to maintain. The prompt above already ends with "run it on dltHub", so your agent can take it there directly.

  • Deploy & schedule — run the pipeline as a managed job with automatic retries.
  • Monitor — observable job queues, alerting, and load metrics for every run.
  • Transform — promote raw Yandex Metrika loads into governed, documented models.
  • Visualize & share — explore data in notebooks and publish live dashboards instead of static screenshots.

Book a demo →


What other destinations can I load Yandex Metrika data to?

dlt loads into any of these — only the destination argument changes:

DestinationExample value
PostgreSQL"postgres"
BigQuery"bigquery"
Snowflake"snowflake"
Redshift"redshift"
Databricks"databricks"
Filesystem (S3, GCS, Azure)"filesystem"

Set dlt.pipeline(destination="snowflake") and add credentials in .dlt/secrets.toml. On the dltHub platform the same pipeline runs against a managed Iceberg lakehouse. See the full destinations list.


Next steps

Was this page helpful?

Community Hub

Need more dlt context for Yandex Metrika to DuckDB?

Request dlt skills, commands, AGENT.md files, and AI-native context.