https://github.com/coinbase-samples/intx-scripts-py
Coinbase International Exchange (INTX) FIX and REST API sample scripts
https://github.com/coinbase-samples/intx-scripts-py
Last synced: 5 months ago
JSON representation
Coinbase International Exchange (INTX) FIX and REST API sample scripts
- Host: GitHub
- URL: https://github.com/coinbase-samples/intx-scripts-py
- Owner: coinbase-samples
- License: apache-2.0
- Created: 2023-08-29T19:45:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T17:21:54.000Z (almost 2 years ago)
- Last Synced: 2024-07-08T22:07:08.964Z (almost 2 years ago)
- Language: Python
- Homepage: https://docs.cloud.coinbase.com/intx/docs/welcome
- Size: 63.5 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Coinbase International Exchange (INTX) API Scripts
This repository provides Python examples of the Coinbase International Exchange Public APIs. These scripts are meant to be examples of minimally viable requests; therefore, logic is repeated between REST scripts to highlight what is necessary for any specific request, and FIX is designed to disconnect after each action.
# Getting started
## 1. Gaining access
Clone the repository with the following command:
```
git clone https://github.com/coinbase-samples/intx-scripts-py
```
## 2. Configuration
Depending on if you are accessing REST or FIX, dependencies will differ. Within each folder, you will find a requirements.txt file, from which you will be able to install dependencies with the following command:
```
pip install -r requirements.txt
```
Additionally, these scripts make use of environment variables where applicable. Detailed READMEs for FIX and REST are provided in their respective directories.