SXSW Hackathon Guide
  • Introduction
  • SXSW 2018 Hackathon Guide
    • Challenge and Prizes
    • Participating Sponsors
    • Thought Starters
      • Music Discovery Service
      • Multi-User Sing Along
      • Cover Art & Fan Pages
      • Interactive Lyrics Page
    • Music Discovery APIs
      • Getting Started
      • API Cheat Sheet
      • Artist - Browse
      • Artist - Chart
      • Artist - Search
    • Media Management APIs
      • Audio and Video
        • Video Transcoding
        • HTML5 Video Player
        • Media Authentication
      • AI: Tagging and Recognition
        • Categorizing Images
        • Content Moderation
      • Serverless Functions
        • Webtask & Cloudinary
      • Web Performance
        • Image Optimization I
        • Image Optimization II
      • Styling and Filtering
        • Neural Artwork
        • Artistic Filters
        • Distortion Effects
      • Uploading Media
        • Social and Cloud Sources
      • Visualization
        • Audio to Waveform Images
    • Step-By-Step Guides
      • Streaming Audio
        • Build an Audio Player
        • Build a Music Discovery API
Powered by GitBook
On this page
  • Artist - browse by name
  • GET /artist/browse
  • EXAMPLE REQUEST:
  1. SXSW 2018 Hackathon Guide
  2. Music Discovery APIs

Artist - Browse

Artist - browse by name

GET /artist/browse

This method returns a list of artists from the 7digital catalogue whose names match the start letter(s) supplied.

Attribute

Type

Description

letter required

string

The first letter(s) of the artist name to browse.

country required

string

ISO 2-character code of the country the end user resides in.

EXAMPLE REQUEST:

http://api.7digital.com/1.2/artist/browse?letter=p&country=US&oauth_consumer_key=YOUR_KEY_HERE

APPLICATION/JSON

{
    "status": "ok",
    "version": "1.2",
    "artists": {
        "page": 1,
        "pageSize": 10,
        "totalItems": 23817,
        "artist": [
            {
                "id": 314018,
                "name": "P & P",
                "sortName": "P & P",
                "url": "http://www.7digital.com/artist/p-and-p/?partner=1401",
                "image": "http://artwork-cdn.7static.com/static/img/artistimages/00/003/140/0000314018_150.jpg",
                "popularity": 0.29
            },
            ...
        ]
    }
}
PreviousAPI Cheat SheetNextArtist - Chart

Last updated 7 years ago