{"id":19524093,"url":"https://github.com/hexonthebeach/posh-mod-gdax","last_synced_at":"2026-06-09T01:32:57.183Z","repository":{"id":178793512,"uuid":"134148791","full_name":"hexonthebeach/posh-mod-gdax","owner":"hexonthebeach","description":"PowerShell Module collection for Coinbase GDAX interaction","archived":false,"fork":false,"pushed_at":"2021-04-27T10:07:51.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-26T01:27:37.861Z","etag":null,"topics":["gdax-api","powershell"],"latest_commit_sha":null,"homepage":null,"language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hexonthebeach.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2018-05-20T12:31:05.000Z","updated_at":"2021-04-27T10:07:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"b547e7d6-d007-468d-a5fe-3ce232d570fe","html_url":"https://github.com/hexonthebeach/posh-mod-gdax","commit_stats":null,"previous_names":["hexonthebeach/posh-mod-gdax"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hexonthebeach/posh-mod-gdax","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexonthebeach%2Fposh-mod-gdax","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexonthebeach%2Fposh-mod-gdax/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexonthebeach%2Fposh-mod-gdax/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexonthebeach%2Fposh-mod-gdax/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hexonthebeach","download_url":"https://codeload.github.com/hexonthebeach/posh-mod-gdax/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hexonthebeach%2Fposh-mod-gdax/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34088013,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["gdax-api","powershell"],"created_at":"2024-11-11T00:45:51.537Z","updated_at":"2026-06-09T01:32:57.167Z","avatar_url":"https://github.com/hexonthebeach.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# POSH-MOD-CBPRO\nPowerShell Module collection for Coinbase Pro interaction\n\n## Why\nSimplify the interaction with the Coinbase Pro API. Making connecting to it and using it effortless and painless.\n\n## Installation\nClone the project to a directory that can be read by your script.\n\nAny location is fine, but one of these might be useful\n\nMake the modules available to the whole system by putting them here:\n``\nC:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules\n``\n\nMake the modules available for a specific account by putting them here:\n``\nC:\\Users\\\u003caSpecificAccount\u003e\\Documents\\WindowsPowerShell\\Modules\n``\n\n## How\nUse the CBPRO prefix when importing the modules, modules with dependencies on eachother rely on this prefix.\n\n- ``cbpro-api`` handles the API request\n- ``cbpro-auth`` provides Credential and authentication methods when nesseccary\n- ``cbpro-accounts`` for your Accounts, History and Holds data\n- ``cbpro-fills`` works with your recent Fills\n- ``cbpro-marketdata`` gets public information like Products Currencies and Time\n- ``cbpro-orders`` handles all your Order mutating, creating, listing and cancelling\n\n```\nImport-Module cbpro-api.psm1 -Prefix CBPRO -Force\nImport-Module cbpro-auth.psm1 -Prefix CBPRO -Force\nImport-Module cbpro-accounts.psm1 -Prefix CBPRO -Force\nImport-Module cbpro-fills.psm1 -Prefix CBPRO -Force\nImport-Module cbpro-marketdata.psm1 -Prefix CBPRO -Force\nImport-Module cbpro-orders.psm1 -Prefix CBPRO -Force\n\n# set the environment to use\nSet-CBPROEnvironment \"sandbox\"\n# supply credentials\nSet-CBPROCredentials -Key 'thekeystring' -Passphrase 'thepassphrasestring' -Secret 'thebase64encodedsecret'\n\n# list your accounts\nGet-CBPROAccounts |Format-Table -AutoSize\n\n# get the latest trade to see the current market value\nGet-CBPROProductTicker -ProductID 'BTC-EUR' |Format-Table -AutoSize\n\n# sell all your BTC with a Market orders\n$btcAccount = $accounts |Where-Object { $_.currency -eq 'BTC' } |Select-Object -First 1\nNew-CBPROOrder -Side sell -ProductID 'BTC-EUR' -Type market -Size $btcAccount.available -Place\n```\nCBPRO-API is the shared dependency for the other modules, and CBPRO-AUTH is required when invoking Private endpoints.\nThe others work independently from eachother.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhexonthebeach%2Fposh-mod-gdax","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhexonthebeach%2Fposh-mod-gdax","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhexonthebeach%2Fposh-mod-gdax/lists"}