npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-tochka

v1.0.6

Published

n8n community node for Tochka Bank Open API (JWT)

Readme

n8n-nodes-tochka

n8n community node для Open API банка Точка.

REST-обёртка над https://enter.tochka.com/uapi/.... Авторизация — JWT Bearer-токеном из личного кабинета.

Установка

В self-hosted n8n: Settings → Community Nodes → Install → ввести имя пакета:

n8n-nodes-tochka

(Требуется N8N_COMMUNITY_PACKAGES_ENABLED=true, по умолчанию включено.)

Credentials

Тип Tochka Bank API с двумя полями:

  • JWT Token — токен из личного кабинета Точки (Настройки → API).
  • Sandbox — флаг тестового контура. Если включён, все запросы идут на https://enter.tochka.com/sandbox вместо боевого https://enter.tochka.com/uapi.

Resources & Operations

Нода организована по схеме Resource → Operation (как у официальных n8n-нод).

Account

  • Get ManyGET /open-banking/v1.0/accounts. Все доступные счета.
  • GetGET /open-banking/v1.0/accounts/{accountId}/{bankCode}. Один счёт.

Balance

  • Get ManyGET /open-banking/v1.0/balances. Балансы всех счетов.
  • GetGET /open-banking/v1.0/accounts/{accountId}/{bankCode}/balances. Баланс одного счёта.

Statement

  • CreatePOST /open-banking/v1.0/statements. Запросить выписку за период (асинхронно). Параметры: accountId, bankCode, dateFrom, dateTo.
  • Get ManyGET /open-banking/v1.0/statements. Список запрошенных выписок (опционально page, limit).
  • GetGET /open-banking/v1.0/accounts/{accountId}/{bankCode}/statements/{statementId}. Получить готовую выписку с транзакциями.

Customer

  • Get ManyGET /open-banking/v1.0/customers. Список клиентов.
  • GetGET /open-banking/v1.0/customers/{customerCode}. Один клиент.

Invoice

Полный жизненный цикл счёта на оплату:

  • CreatePOST /invoice/v1.0/bills. Все обязательные поля Точки в форме: accountId, customerCode, данные покупателя (SecondSide с taxCode+type), Invoice (number, totalAmount), массив Positions (минимум одна позиция с positionName, unitCode, ndsKind, price, quantity, totalAmount). Опциональные — в группах Invoice Extras и доп. поля покупателя.
  • Get PDFGET /invoice/v1.0/bills/{customerCode}/{documentId}/file.
  • Get Payment StatusGET /invoice/v1.0/bills/{customerCode}/{documentId}/payment-status.
  • DeleteDELETE /invoice/v1.0/bills/{customerCode}/{documentId}.
  • Send By EmailPOST /invoice/v1.0/bills/{customerCode}/{documentId}/email.

Payment

  • CreatePOST /payment/v1.0/for-sign. Создание платёжного поручения для подписи. Обязательные: accountCode, bankCode, counterpartyBankBic, counterpartyAccountNumber, counterpartyName, paymentAmount, paymentDate, paymentPurpose. Опциональные сгруппированы: реквизиты получателя (ИНН/КПП/корр.счёт), плательщика (payerINN/payerKPP), доп. поля (номер платежа, приоритет, email и др.), бюджетные поля (101–110).
  • Get Many (For Sign)GET /payment/v1.0/for-sign. Список платежей, ожидающих подписи (опц. page, limit).
  • Get StatusGET /payment/v1.0/status/{requestId}. Статус платежа.

Custom

  • API Call — произвольный HTTP-запрос (метод/путь/query/body) для эндпоинтов, не покрытых явно.

Формат ответа

Ответы Точки в формате { Data: {...}, Links, Meta } обрабатываются автоматически: если Data содержит массив (например, Data.Account[], Data.Customer[]), нода эмитит по одному n8n-item на каждый элемент. Иначе — весь ответ как один item.

Тест credentials

Custom → API Call с дефолтным GET /open-banking/v1.0/customers подтверждает валидность JWT.

Локальная разработка

npm install
npm run build
npm link
# в директории установки n8n:
npm link n8n-nodes-tochka
# перезапустить n8n

Лицензия

MIT