Is There a Document on the Available API Routes for <http://Grain.com|Grain.com>?

This topic was automatically generated from Slack. You can find the original thread here.

is there a doc on the API routes available for Grain.com?

To find documentation on the API routes available for Grain, you can refer to the Grain API documentation. However, I don’t have direct access to external content or live data, so I recommend visiting Grain’s official website or contacting their support for detailed API documentation. If you’re looking to integrate Grain with Pipedream, you can use the Pipedream component for Grain. Here’s an example of how you can make a test request against the Grain API using Pipedream: ```
import { axios } from “@pipedream/platform”; export default defineComponent({ props: { grain: { type: “app”, app: “grain”, }, }, async run({ steps, $ }) { return await axios($, { url: https://api.grain.com/_/public-api/me, headers: { Authorization: Bearer ${this.grain.$auth.oauth_access_token}, }, }); }, });

Shen, here you go!