Creatopy Public API
  • Public API
    • Quickstart
    • Authentication
  • REST API
    • Overview
    • Auth
    • Exports
      • Creatives
    • Templates (Designs)
      • Elements
      • Template Sizes
      • Font variants
    • ShareLink
    • Projects
      • Project Users
    • Brand Kits
      • Brand kit assets
      • Brand kit logos
      • Brand kit media folders
      • Brand templates
    • Ad Networks
    • Ad Serving
    • Users
      • Team roles
    • Webhooks
      • Webhook action types
    • Design Versions
    • Folders
      • Move design to folder
    • Error codes
    • Designs
  • GraphQL API
    • Overview
    • Endpoints and queries
    • Postman Collection
Powered by GitBook
On this page
  1. GraphQL API

Endpoints and queries

Endpoints and queries

All Creatopy Public API queries are made on a single GraphQL endpoint, which only accepts POST requests:

https://graphql.creatopy.com/public

curl -X POST \
  https://graphql.creatopy.com/public \
  -H 'Content-Type: application/graphql' \
  -H 'Authorization": Bearer: {authorization_token}' \
} \
  -d '
  query getDownloadStatus {
  download(input: { downloadId: "{downloadId}" }) {
    status
    creatives {
      __typename
      ... on DownloadCreativeDesign {
        id
        status
        url
      }
      ... on DownloadCreativeSet {
        creatives {
          id
          status
          url
        }
      }
    }
  }
}
  '
PreviousOverviewNextPostman Collection

Last updated 7 months ago