1import requests23# List endpoints for a model (GET /models/:author/:slug/endpoints)4response = requests.get(5 "https://openrouter.ai/api/v1/models/author/slug/endpoints",6 headers={},7)89print(response.json())