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`,
})
},
})
The Gemini Public API does not require authentication.