Bandcamp-API icon indicating copy to clipboard operation
Bandcamp-API copied to clipboard

My attempt at documenting the un-documented bandcamp.com web API.

Results 3 Bandcamp-API issues
Sort by recently updated
recently updated
newest added

https://github.com/michaelherger/Bandcamp-API/blob/7c30cfc67543e4ad681b98f8e196c3597c3e3bdb/data/bandcamp.yaml#L946-L954 This is merely discoveries from analysis of API responses on my own collection. The `older_than_token` is broken up into 5 parts separated by `:` Example partial response from `api/fancollection/1/collection_items`...

Playing around with chrome inspect on the fan page I found the search box accesses a nice API: POST JSON to `/api/fancollection/1/search_items` request JSON: ```json { "fan_id": 1234, "search_key": "test",...

https://github.com/michaelherger/Bandcamp-API/blob/7c30cfc67543e4ad681b98f8e196c3597c3e3bdb/data/bandcamp.yaml#L194-L203 The body of the request POST looks the same: ``` { "fan_id": 1234, "older_than_token": "1387353233:2721882214", "count": 3 } ``` Except the `"older_than_token"` field is very different, this time having...