What do you want to automate

with Epsy and Shadertoy?

Prompt, edit and deploy AI agents that connect to Epsy, Shadertoy and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Email Lookup with the Epsy API

Request a lookup for the provided email. See the documentation

 
Try it
Access Shader Assets with the Shadertoy API

Accesses an asset from source. See the documentation

 
Try it
Get Lookup Results with the Epsy API

Get the results of the lookup with the provided ID. See the documentation

 
Try it
Get Shader with the Shadertoy API

Returns a specific shader based on an ID. See the documentation

 
Try it
Name Lookup with the Epsy API

Request a lookup for the provided name. See the documentation

 
Try it
Integrate the Epsy API with the Shadertoy API
Setup the Epsy API trigger to run a workflow which integrates with the Shadertoy API. Pipedream's integration platform allows you to integrate Epsy and Shadertoy remarkably fast. Free for developers.

Connect Epsy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    epsy: {
      type: "app",
      app: "epsy",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://irbis.espysys.com/api/request-monitor/credit-stat`,
      headers: {
        "accept": `application/json`,
        "content-type": `application/json`,
      },
      params: {
        key: `${this.epsy.$auth.api_key}`,
      },
    })
  },
})

Overview of Shadertoy

The Shadertoy API opens a window to a universe of visual creations by providing programmatic access to a wealth of shaders created by the Shadertoy community. These shaders are snippets of GLSL code that produce stunning graphics and visual effects. In Pipedream, you can leverage this API to trigger workflows that interact with these shaders, such as retrieving shader information, displaying shader visuals, or even monitoring the latest creations. By combining Shadertoy API with Pipedream's capability to connect to numerous other services, your creative and technical projects can flourish with dynamic, visually rich content.

Connect Shadertoy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    shadertoy: {
      type: "app",
      app: "shadertoy",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: ` https://www.shadertoy.com/api/v1/shaders/query/test`,
      params: {
        key: `${this.shadertoy.$auth.app_key}`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo