{"files":{"SKILL.md":"---\nname: taxrates-io-api\ndescription: \"Taxrates.io API skill. Use when working with Taxrates.io for tax. Covers 3 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# Taxrates.io API\n\n## Auth\nApiKey Authorization in header\n\n## Base URL\nhttps://api.taxrates.io/api\n\n## Setup\n1. Set your API key in the appropriate header\n2. GET /v3/tax/rates -- verify access\n\n## Endpoints\n\n3 endpoints across 1 groups. See references/api-spec.lap for full details.\n\n### tax\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /v3/tax/rates | Get request |\n| GET | /v1/tax/ip | Get request |\n| GET | /v1/tax/countrycode | Get request |\n\n## Common Questions\n\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"List all rates?\" -> GET /v3/tax/rates\n- \"List all ip?\" -> GET /v1/tax/ip\n- \"List all countrycode?\" -> GET /v1/tax/countrycode\n- \"How to authenticate?\" -> See Auth section\n\n## Response Tips\n- Check response schemas in references/api-spec.lap for field details\n- List endpoints may support pagination; check for limit, offset, or cursor params\n\n## CLI\n\n```bash\n# Update this spec to the latest version\nnpx @lap-platform/lapsh get taxrates-io-api -o references/api-spec.lap\n\n# Search for related APIs\nnpx @lap-platform/lapsh search taxrates-io-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 Taxrates.io API\n@base https://api.taxrates.io/api\n@auth ApiKey Authorization in header\n@endpoints 3\n@toc tax(3)\n\n@endpoint GET /v3/tax/rates\n@desc Get request\n@optional {domain: str # Domain name: api.taxrates.io, filter: str # You can filter your taxes by one of following types: 'standard', 'CombinedRate', 'CountyRate', 'CityRate', 'SPDRate' and 'MTARate'., cursor: str # Cursor shows from which record you want to get information. Default value is 0, next value can be retrieved from X-Cursor-Next header., Product_code: str}\n@returns(500) {code: str, message: str, fields: str}\n\n@endpoint GET /v1/tax/ip\n@desc Get request\n@optional {domain: str # Domain name: api.taxrates.io, ip: str # Customer's IP address, filter: str # For US sales tax you can filter the tax type, zip: str # For US sales tax a Zipcode must be proivded, product_code: str # Your can filter your taxes by product code}\n\n@endpoint GET /v1/tax/countrycode\n@desc Get request\n@optional {domain: str # Domain name: api.taxrates.io, country_code: str # Country code alpha 2, filter: str # You can filter your taxes by one of following types: 'standard', 'reduced', 'second reduced', 'third reduced' and 'super reduced'., zip: str # You must provide a zip code if one of your selected countries is United States and you've had selected a state on your Taxrates.io member's dashboard., product_codes[]: str # Use one or many product code/s., province : str # Use for Canada, date: str}\n@returns(200) {country_name: str, taxes: [map]}\n\n@end\n"}}