Powered by Genql
GraphQL client for the
zora.co API
zora.co API
Graphql API for zora. Programmatic access to NFT data.
This SDK was created from the zora.co GraphQL API with Genql.
This library is fully type safe and thanks to TypeScript auto completion you can discover fields and methods very easily.
How to install
Use a package manager to install the API client
bashnpm install @genql/zora
Using the client
Use a package manager to install the API client
typescriptimport { createClient } from '@genql/zora' const client = createClient()
Passing headers
You can use the headers options to pass credentials or other headers
typescriptimport { createClient } from '@genql/zora' const client = createClient({ headers: { Authorization: `Bearer ${Token}` } })
Example queries
This SDK is generated from the zora.co
GraphQL API so the client has a structure similar to the one used by GraphQL queries.
To fetch fields you need to explicitly pass field: true
, you can also pass __args
to fetch all scalar fields on a type.
Notice that to pass arguments you can use __args
typescriptimport { createClient } from '@genql/zora' const client = createClient() // query variables let networks let sort let where client .query({ aggregateAttributes: { __args: { networks: networks, sort: sort, where: where, }, traitType: true, valueMetrics: { count: true, percent: true, value: true, }, }, }) .then((x) => console.log(JSON.stringify(x, null, 4))) // query variables let networks let where let networks1 let where1 let networks2 let where2 client .query({ aggregateStat: { accumulativeSales: { __args: { networks: networks, where: where, }, count: true, date: true, }, floorPrice: { __args: { networks: networks1, where: where1, }, }, nftCount: { __args: { networks: networks2, where: where2, }, }, }, }) .then((x) => console.log(JSON.stringify(x, null, 4)))
More usage examples
This SDK was created using Genql so you can find more usage examples in the main Genql website and docs