The API with the details of my records is available at /api/records. The documentation is below. Currently the only supported method is listing and searching the data. I provide an authorization token below you can use for demo purposes. If you want to actually use the data, contact me and I'll provide an individual token.
GET /api/records

Gets a list of records in my collection from the database. You can search the data by the parameters listed below or sort the returned data using the optional sort parameter. Specifying no parameters returns all of the data.

  • Parameters
  • api_token
    string (required) Example: SKOOCH_API

    Your authorization token. For demonstration purposes you can use SKOOCH_API.

    sort
    string (optional) Example: artist

    The field you want to sort the data by:
    artist
    title
    label
    catalog_no - note not all records have a catalog number

    artist
    string (optional) Example: claude young

    Seach by artist

    title
    string (optional) Example: dj kicks

    Seach by title

    label
    string (optional) Example: !k7

    Seach by label

    catalog_no
    string (optional) Example: K7045EP

    Seach by catalog number - note not all records have a catalog number

  • Response 200 Toggle
  • Headers
    Status: HTTP/1.1 200 OK
    Content Type: application/json
    Date: Sat, 26 Nov 2016 16:22:55 GMT
    Server: Apache/2.4.18 (Ubuntu)
    Connection: close
    Body
    {
     "items": 1 - number of results
     "results": [
      {
        "id":411,
        "artist":"Claude Young",
        "title":"DJ Kicks EP",
        "label":"!K7",
        "catalog_no":"K7045EP",
        "discogs":"/Claude-Young-DJ-Kicks-EP/release/38403", - this URI goes to www.discogs.com
        "thumb":"https://api-img.discogs.com/.../R-r_38403-002.jpg.jpg",
        "created_at":"2016-11-04 10:40:10",
        "updated_at":"2016-11-04 10:40:10",
      }
     ]
    }
  • Response 404 Toggle
  • Headers
    Status: HTTP/1.1 404 Not Found
    Content Type: application/json
    Date: Sat, 26 Nov 2016 16:22:55 GMT
    Server: Apache/2.4.18 (Ubuntu)
    Connection: close
    Body
    {
      "message":"No matching records found",
    }