{"id":26096504,"url":"https://github.com/shadowlion/transactapi-js","last_synced_at":"2026-04-11T17:02:57.002Z","repository":{"id":37611581,"uuid":"410291756","full_name":"shadowlion/transactapi-js","owner":"shadowlion","description":"An unofficial api wrapper for TransactAPI, written in Typescript.","archived":false,"fork":false,"pushed_at":"2023-10-18T10:11:07.000Z","size":389,"stargazers_count":6,"open_issues_count":3,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-09T01:29:31.150Z","etag":null,"topics":["api","fintech","fintech-api","hacktoberfest","hacktoberfest2022","javascript","nodejs","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shadowlion.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2021-09-25T14:20:08.000Z","updated_at":"2025-06-16T21:08:03.000Z","dependencies_parsed_at":"2025-12-06T04:07:29.338Z","dependency_job_id":null,"html_url":"https://github.com/shadowlion/transactapi-js","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":"shadowlion/setup-ts-template","purl":"pkg:github/shadowlion/transactapi-js","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadowlion%2Ftransactapi-js","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadowlion%2Ftransactapi-js/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadowlion%2Ftransactapi-js/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadowlion%2Ftransactapi-js/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shadowlion","download_url":"https://codeload.github.com/shadowlion/transactapi-js/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shadowlion%2Ftransactapi-js/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31687882,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T13:07:20.380Z","status":"ssl_error","status_checked_at":"2026-04-11T13:06:47.903Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["api","fintech","fintech-api","hacktoberfest","hacktoberfest2022","javascript","nodejs","typescript"],"created_at":"2025-03-09T14:56:12.739Z","updated_at":"2026-04-11T17:02:56.986Z","avatar_url":"https://github.com/shadowlion.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TransactAPI Javascript SDK\n\nTransactAPI is a RESTful API that enables broker-dealers, funding platforms, and issuers to conduct online private securities offerings. Our standards-based API toolkit can be quickly and easily integrated with proprietary platforms, saving development time and money. Issuers, intermediaries, and advisors can benefit from TransactAPI’s straight-through processing of private placement transactions, which enables higher transaction volumes, expands access to investors, and reduces processing times.\n\nThis is a javascript API wrapper that functions for endpoints as specified in the [documentation](https://api.norcapsecurities.com/documentation) of Transact API, provided by [North Capital Private Securities](https://www.northcapital.com/) (NCPS).\n\n## Author's Notes\n\nThis is in no way an official SDK provided by the company itself. However, since I use a lot of javascript in my daily work life, I figured I could create a library and share it with others in a more open-source format.\n\nFor those who wish to help during Hacktoberfest (or any time else!), please submit a PR. Check the [contribution section](CONTRIBUTE.md) for more information.\n\n## Development\n\nYou will need to acquire both a `clientID` and `developerAPIKey` from NCPS in order to use this for actual financial services - this happens when you subscribe to them as a customer of their services. However, you DO NOT need a `clientID` nor `developerAPIKey` from NCPS to develop this library, as we use mocks from their documentation to test each endpoint.\n\n## Installation\n\n```bash\nnpm install transactapi-js --save\nyarn add transactapi-js\npnpm add transactapi-js\n```\n\n## Usage\n\n```javascript\n// Javascript, CJS\nconst transactapi = require(\"transactapi-js\");\n\n(function () {\n  const getAccount = transactapi.getAccount;\n  const payload = {\n    clientID: \"\",\n    developerAPIKey: \"\",\n    accountId: \"\",\n  };\n  getAccount(payload).then((account) =\u003e {\n    const name = account.accountName;\n    console.log(name);\n  });\n})();\n```\n\n```javascript\n// Javascript, ES6\nimport getAccount from \"transactapi-js/getAccount\";\n\n(async () =\u003e {\n  const payload = {\n    clientID: \"\",\n    developerAPIKey: \"\",\n    accountId: \"\",\n  };\n  const account = await getAccount(payload);\n  const name = account.accountName;\n  console.log(name);\n})();\n```\n\n```typescript\n// Typescript\nimport getAccount, { GetAccountPayload } from \"transactapi-js/getAccount\";\n\n(async () =\u003e {\n  const payload: GetAccountPayload = {\n    clientID: \"\",\n    developerAPIKey: \"\",\n    accountId: \"\",\n  };\n  const account = await getAccount(payload);\n  const name = account.accountName;\n  console.log(name);\n})();\n```\n\n## How to Contribute\n\nPlease use the [CONTRIBUTE.md](CONTRIBUTE.md) file to learn more.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshadowlion%2Ftransactapi-js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshadowlion%2Ftransactapi-js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshadowlion%2Ftransactapi-js/lists"}