connect
search

Guides

This section contains resources, guides and code samples for different scenarios, from creating a title in Connect to using the Deep Analysis feature.

Using the API

The GraphQL API offers the flexibility of being consumed from virtually any development environment. It is self-describing which facilitates a rapid ramp-up for integrators. Using schema introspection, you can quickly understand the scope of the API and its features.

To use the GraphQL API in your programming language of choice, you have to:

  • make an HTTP POST request. All GraphQL requests are made with POST.
  • compose the signature required for authentication. The Connect API requires authentication for all requests.
  • compose the payload of the request and parse the response.
API AuthenticationBasic Scenarios