{"files":{"SKILL.md":"---\nname: bandsintown-api\ndescription: \"Bandsintown API skill. Use when working with Bandsintown for artists. Covers 2 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# Bandsintown API\nAPI version: 3.0.0\n\n## Auth\nNo authentication required.\n\n## Base URL\nhttps://rest.bandsintown.com\n\n## Setup\n1. No auth setup needed\n2. GET /artists/{artistname}/events -- verify access\n\n## Endpoints\n\n2 endpoints across 1 groups. See references/api-spec.lap for full details.\n\n### artists\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /artists/{artistname} | Get artist information |\n| GET | /artists/{artistname}/events | Get upcoming, past, or all artist events, or events within a date range |\n\n## Common Questions\n\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"Get artist details?\" -> GET /artists/{artistname}\n- \"List all events?\" -> GET /artists/{artistname}/events\n\n## Response Tips\n- Check response schemas in references/api-spec.lap for field details\n\n## CLI\n\n```bash\n# Update this spec to the latest version\nnpx @lap-platform/lapsh get bandsintown-api -o references/api-spec.lap\n\n# Search for related APIs\nnpx @lap-platform/lapsh search bandsintown-api\n```\n\n## References\n- Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas\n\n> Generated from the official API spec by [LAP](https://lap.sh)\n","references/api-spec.lap":"@lap v0.3\n# Machine-readable API spec. Each @endpoint block is one API call.\n@api Bandsintown API\n@base https://rest.bandsintown.com\n@version 3.0.0\n@endpoints 2\n@toc artists(2)\n\n@endpoint GET /artists/{artistname}\n@desc Get artist information\n@required {artistname: any # The name of the artist. If it contains one of the special characters below, please be sure to replace it by the corresponding code: for / use %252F, for ? use %253F, for * use %252A, and for \" use %27C, app_id: any # The application ID assigned to you by Bandsintown}\n@returns(200) 200 response\n\n@endpoint GET /artists/{artistname}/events\n@desc Get upcoming, past, or all artist events, or events within a date range\n@required {artistname: any # The name of the artist. If it contains one of the special characters below, please be sure to replace it by the corresponding code: for / use %252F, for ? use %253F, for * use %252A, and for \" use %27C, app_id: any # The application ID assigned to you by Bandsintown}\n@optional {date: any # Can be one of the following values: \"upcoming\", \"past\", \"all\", or a date range e.g. \"2015-05-05,2017-05-05\". If not specified, only upcoming shows are returned}\n@returns(200) Shows within a date range for the selected artist\n\n@end\n"}}