A decentralized music tracking and discovery platform built on AT Protocol 馃幍 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
97
fork

Configure Feed

Select the types of activity you want to include in your feed.

at feat/pgpull 9 lines 253 B view raw
1import axios from "axios"; 2import { API_URL } from "../consts"; 3 4export const search = async (query: string) => { 5 const response = await axios.get( 6 `${API_URL}/xrpc/app.rocksky.feed.search?query=${query}&size=100`, 7 ); 8 return response.data; 9};