MCPcopy Index your code
hub / github.com/SunoAI-API/Suno-API / fetch_feed

Function fetch_feed

main.py:56–63  ·  view source on GitHub ↗
(aid: str, token: str = Depends(get_token))

Source from the content-addressed store, hash-verified

54
55@app.get("/feed/{aid}")
56async def fetch_feed(aid: str, token: str = Depends(get_token)):
57 try:
58 resp = await get_feed(aid, token)
59 return resp
60 except Exception as e:
61 raise HTTPException(
62 detail=str(e), status_code=status.HTTP_500_INTERNAL_SERVER_ERROR
63 )
64
65
66@app.post("/generate/lyrics/")

Callers

nothing calls this directly

Calls 1

get_feedFunction · 0.90

Tested by

no test coverage detected