Discover, collect, and sell extraordinary NFTs. OpenSea is the world's first and largest NFT marketplace.
Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status
trigger. More information here
Emit new events when collaborators are added to a repo
Find issues and pull requests by state and keyword. See docs here
Create or update a file in a repository. This will replace an existing file. See docs here
What Is OpenSea API? OpenSea API is a platform that provides access to
Web3-enabled cryptocurrency applications, allowing developers to build secure,
trustless applications. OpenSea API provides a suite of tools, including a
secure and distributed marketplace, digital asset management, and decentralized
trading. Through OpenSea API, developers can build secure, trustless
applications to tokenize, trade, and manage digital assets as well as create a
marketplace for digital goods and services.
OpenSea API can be used to create a variety of applications, including:
With the OpenSea API, developers can create an array of custom solutions to
trade, manage, and monetize digital assets. Developers can build applications
that enable users to buy, sell, and manage digital assets in a secure,
trustless environment. Applications built on OpenSea API can facilitate both
peer-to-peer trading and investment management services. OpenSea API can also
be used to create digital collectibles, gaming solutions, and digital asset
marketplaces for buying and selling digital assets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
opensea: {
type: "app",
app: "opensea",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.opensea.io/api/v1/assets`,
headers: {
"X-API-KEY": `${this.opensea.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
github: {
type: "app",
app: "github",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.github.com/user`,
headers: {
Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
"X-GitHub-Api-Version": `2022-11-28`,
},
})
},
})