Cryptocurrency Exchange to Buy Bitcoin and Ether
The Gemini Public API allows you to build a variety of applications that
interact with the Gemini Exchange. Some examples of what you can build include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gemini_public: {
type: "app",
app: "gemini_public",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.gemini.com/v1/symbols`,
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})