{"id":30773376,"url":"https://github.com/syniol/xyo-sdk-node","last_synced_at":"2026-01-20T17:03:28.191Z","repository":{"id":309149672,"uuid":"1035305491","full_name":"syniol/xyo-sdk-node","owner":"syniol","description":"an Official XYO Financial SDK for Node (TypeScript and JavaScript)","archived":false,"fork":false,"pushed_at":"2025-10-19T14:29:23.000Z","size":39033,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-19T20:56:23.958Z","etag":null,"topics":["ai","enrichment","financial","payment-transactions"],"latest_commit_sha":null,"homepage":"https://xyo.financial","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/syniol.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-10T05:26:16.000Z","updated_at":"2025-10-19T14:29:15.000Z","dependencies_parsed_at":"2025-08-10T07:14:51.844Z","dependency_job_id":"05b1f8f4-151d-4006-9d1c-5f9b7c57a969","html_url":"https://github.com/syniol/xyo-sdk-node","commit_stats":null,"previous_names":["syniol/xyo-sdk-node"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/syniol/xyo-sdk-node","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syniol%2Fxyo-sdk-node","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syniol%2Fxyo-sdk-node/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syniol%2Fxyo-sdk-node/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syniol%2Fxyo-sdk-node/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/syniol","download_url":"https://codeload.github.com/syniol/xyo-sdk-node/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syniol%2Fxyo-sdk-node/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","enrichment","financial","payment-transactions"],"created_at":"2025-09-05T01:50:48.335Z","updated_at":"2026-01-20T17:03:28.185Z","avatar_url":"https://github.com/syniol.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# XYO Financial SDK (Node.js)\n![workflow](https://github.com/syniol/xyo-sdk-node/actions/workflows/makefile.yml/badge.svg)    ![workflow](https://github.com/syniol/xyo-sdk-node/actions/workflows/npm_publish.yml/badge.svg)\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://xyo.financial\" target=\"blank\"\u003e\u003cimg alt=\"node.js (Turtle) Mascot\" width=\"50%\" src=\"https://github.com/syniol/xyo-sdk-node/blob/main/docs/mascot.png?raw=true\" /\u003e\u003c/a\u003e\n    \u003csup\u003e\u003cbr /\u003eUnofficial Node.js Mascot for XYO.Financial Generated by Adobe AI and Imagined by Syniol Limited\u003c/sup\u003e\n\u003c/p\u003e\n\nThis SDK is official XYO.Financial and maintained by [Syniol Limited](https://syniol.com). It can be utilised for Trial and \nPremium accounts, given that a valid API key is available to connect to and access the \nEnrichment services.\n\n\n## Quickstart Guide\nFirst you need to install the XYO SDK for node.js ecosystem via [npm](https://www.npmjs.com/package/xyo-sdk) or [yarn](https://yarnpkg.com/package/xyo-sdk) package management.\n\n__npm__:\n```shell\nnpm i xyo-sdk\n```\n\n__yarn__:\n```shell\nyarn add xyo-sdk\n```\n\nClient is an entry point to use the SDK. You need a valid API Key obtainable from https://xyo.financial/dashboard\n\n__ES5 Example__\n```js\nconst xyo = require('xyo-sdk');\n\n(async () =\u003e {\n  const client = new xyo.Client(new xyo.ClientConfig({ apiKey: 'YourAPIKeyFromXYO.FinancialDashboard' }))\n})()\n```\n\n__ES6+ and TypeScript Example__\n```js\nimport { Client, ClientConfig } from 'xyo-sdk'\n\n(async () =\u003e {\n  const client = new Client(new ClientConfig({ apiKey: 'YourAPIKeyFromXYO.FinancialDashboard' }))\n})()\n```\n\n__Enrich a Single Payment Transaction__:\n```js\nconst enrichedTransaction = client.enrichTransaction({\n  content: 'Costa PickUp',\n  countryCode: 'GB',\n})\n\nconsole.log(enrichedTransaction.merchant)\nconsole.log(enrichedTransaction.description)\nconsole.log(enrichedTransaction.categories)\nconsole.log(enrichedTransaction.logo)\n```\n\n__Enrich Payment Transaction Collection _(Bulk Enrichment)___:\n```js\nconst enrichedTransactionCollection = client.enrichTransactionCollection([\n  { \n    content: 'Costa PickUp',\n    countryCode: 'GB',\n  },\n  {\n    content: 'STRBUKS GREENWICH',\n    countryCode: 'GB',\n  },\n])\n\nconsole.log(enrichedTransactionCollection.id)\nconsole.log(enrichedTransactionCollection.link)\n```\n\n__Payment Transaction Collection Status__:\n```js\nconst enrichedTransactionCollectionStatus = client.enrichTransactionCollectionStatus(enrichedTransactionCollection.id)\n\nconsole.log(enrichedTransactionCollectionStatus)\n```\n\n\n#### Credits\nCopyright \u0026copy; 2025 Syniol Limited. All rights reserved.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyniol%2Fxyo-sdk-node","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsyniol%2Fxyo-sdk-node","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyniol%2Fxyo-sdk-node/lists"}