GraphQL API Documentation
Learn how to use the Korvix3D GraphQL API for flexible data queries.
GraphQL Endpoint
https://api.korvix3d.com/graphql
Example Queries
Get Assets
query {
assets {
id
name
description
category
price
}
}
Get Asset with Details
query {
asset(id: "asset-id") {
id
name
description
files {
format
url
}
materials {
name
type
}
}
}