Capitol 360 Innovation Center Hackathon Guide
SIGN UP FOR CLOUDINARY
Capitol360 December 2018 Hacktathon Guide
Capitol360 December 2018 Hacktathon Guide
  • Capitol Royale 2018 Hackathon Guide
  • Capitol Royale 2018 Hackathon Guide
    • Arrival Guide / Parking
    • Dec'18 Challenges
      • Verizon 5G Challenge
      • Dec'18 Prizes
    • June'18 UMG Challenges
      • Immersive Wayne Shorter Catalog
      • Build an A&R research tool
    • Hackathon Event Flow
  • Blueprints
    • Discover Music
  • Industry Guides
    • Music Industry 101
  • Cloudinary
    • Using Cloudinary
      • Build a Cover Image
      • Video Transcoding
      • Image Optimization I
      • Categorizing Images
      • HTML5 Video Player
      • Media Authentication
      • Image Optimization II
      • Content Moderation
      • Neural Artwork
      • Artistic Filters
      • Distortion Effects
      • Audio to Waveform Images
      • Social and Cloud Sources
      • Webtask & Cloudinary
    • Cloudinary API: Workshop Deck
  • 7Digital
    • UMG Catalog / 7digital API
    • API Specifics
    • Streaming Audio Files
    • Catalog Metadata Available
    • API Error Codes & Messages
  • Tivo
    • Using TiVo & Lyricfind APIs’
  • TiVo Playlisting
  • ConsenSys
    • ConsenSys Hackathon Developer Guide
  • Spotify
    • Spotify API
  • Qloo
    • Qloo Developer Guide
  • Microsoft
    • Using Microsoft APIs
Powered by GitBook
On this page
  • Overview
  • Important Information
  • Quickstart
  • API Endpoints
  1. Qloo

Qloo Developer Guide

PreviousSpotify APINextUsing Microsoft APIs

Last updated 6 years ago

is the cultural AI, and we produce deep data science for the largest verticals of culture and entertainment. As experts in people’s taste, we uniquely find connections across over a dozen categories and use that knowledge to generate high quality recommendations at scale. For this hackathon, we’re giving you access to a limited version of our enterprise API.

Challenge: Discover music by its relation to any combination of locations, books, restaurants, fashion, film, music or tV.

Overview

You, hackathoner, can use Qloo’s API to:

  • Search through ≈ 5.5 million entities spanning books, restaurants, fashion, film, music, travel destinations and TV.

  • Use any combination of entities to get recommendations in the category of your choice.

Important Information

  • Each team will be given a token to access the API.

  • You need to add the following parameters to all API requests:

    • "Content-Type": "application/json"

    • "Authorization": <token>

Quickstart

Javascript (es6)

const fetch = require('node-fetch'); const token = '...'; const url = 'https://gfqb4seej7.execute-api.us-east-1.amazonaws.com/production'; const qlooApi = async (path, params) => { const paramString = new URLSearchParams(params).toString(); const results = await fetch(`${url}/${path}?${paramString}`, { method: "GET", headers: { "Content-Type": "application/json", "Authorization": token, }, }); return await results.json(); } (async () => { console.log(await qlooApi('/search', { query: 'beyonce' })); console.log(await qlooApi('/recs', { sample: ['id', 'id'] })); })()

API Endpoints

Our documentation for this project lives at:

http://docs-a07d0e4aa.qloo.com/

Qloo