📹 New! Remote User Testing - Get video + voice feedback on designs and prototypes
Read more
Integrations & API

Building a Marvel Integration in Javascript, Using Our GraphQL API

Posted 5 years ago by Maxime De Greve
Building a Marvel Integration in Javascript, Using Our GraphQL API

If you've been following us a little these last few months, you probably noticed we've launched a series of small applications built on top of our Platform API.

Including:

These little applications are only the tip of the iceberg of what's possible with the Marvel API.

We built these not only to enhance your Marvel experience but also to showcase how to use our Platform API, it's something we launched earlier in the year to allow you to access Marvel's core functionality and build your own tools, apps and integrations. Therefore BotBot, Marvel for Keynote and Dashboard are all open source and can be found on our GitHub account.

Alright let's build a simple, “The owner of this Marvel account is: [your name]” web application.

API Image

What do you need?

  1. Pick a coding language, we'll use Javascript in this.
  2. Visit https://marvelapp.com/oauth/devtoken and save the token. We'll need this to connect to your Marvel account later on.
  3. Read our documentation, especially if you're not clear on how specific things work after this tutorial. https://marvelapp.com/developers/documentation/

If you quickly scan through our documentation you'll notice our API uses something called GraphQL, instead of a classic REST API. At first, this fancy word sounded scary to me but it's actually more flexible and easy to understand than REST API's, which can often give you back too much data that you have to scan through.

For example, when I need the name and email of a user:

A classic REST API returns:

A GraphQL API returns only what you need:

Therefore there is less data for your integration to scan through, which is faster for the Marvel API, faster for your integration and easier to understand by you when going through this data.

Starting to write your integration

Alright, let's write something in Javascript to understand this better.

First let's create a hello.html file and add this to it:

Now, let's fetch your name from the Marvel API by adding some basic Javascript inside the <script> tag:

Woah that's a lot to digest in one go...

API Image

GraphQL queries

The first two lines are might be straightforward, but the third line is probably where things feel a bit new. When talking about the difference between REST API's and a GraphQL API, I explained that you only query what you need, to avoid fetching the data you don't need. To do this you need to write a GraphQL query.

To make it easier for everyone to get started with this, we've added a few common query examples to our documentation. Check them out here.

Now you're more than likely wondering what other properties are available on the user, other than simply their username and email. For that you can use our reference documentation which can be found here.

Or you could just use our GraphQL playground over here.

This has auto completion and a docs sidebar, perfect for when you want to write and test your queries before using them in code.

Wrapping up

When you open your html file now you should be able to see who the owner is of your Marvel account. (Note: you might have to turn your cross origin setting off in your browser)

When you view the console of your browser you will also see what information the API returned after querying it with GraphQL query.

Questions

If whilst using our API and after reading our documentation, there are some questions remain unanswered, join our Slack Community.

Designer and Developer @marvelapp. Belgian.

Related Posts

Learn how to manage your design team by extracting useful data and streamline your workflow with Marvel’s API

No product or creative process is complete without whiteboarding, it’s a great way to quickly throw together ideas, scribbles and notes in meeting rooms. But what do we do now we’re all working from home? Meet Mixed.io, it brings the classic whiteboard experience to your screen, allowing you to brainstorm in real-time with your team. Mixed now integrates with Marvel!… Read More →

Last year we launched the Marvel API, a new way to build customised workflows, integrations and apps that utilise the designs, users and data on Marvel. It led to some brilliant integrations like SmartMockups, Maze and Microsoft Teams. We also kicked off Marvel Labs, an internal skunkworks where we experiment with small apps and ideas like Userflows and Dashboard …. Read More →

Categories