{"files":{"SKILL.md":"---\nname: papinet-api\ndescription: \"papiNet API skill. Use when working with papiNet for orders. Covers 2 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# papiNet API\nAPI version: 1.0.0\n\n## Auth\nNo authentication required.\n\n## Base URL\nhttps://papinet.papinet.io\n\n## Setup\n1. No auth setup needed\n2. GET /orders -- list `orders`\n3. Explore available endpoints below\n\n## Endpoints\n2 endpoints across 1 group. See references/api-spec.lap for full details.\n\n### Orders\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /orders | List `orders` |\n| GET | /orders/{orderId} | Get an `order` |\n\n## Common Questions\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"List all orders?\" -> GET /orders\n- \"Get order details?\" -> GET /orders/{orderId}\n\n## Response Tips\n- Check response schemas in references/api-spec.lap for field details\n- Paginated endpoints accept limit/offset or cursor parameters\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 papiNet API\n@base https://papinet.papinet.io\n@version 1.0.0\n@endpoints 2\n@toc orders(2)\n\n@endpoint GET /orders\n@desc List `orders`\n@optional {orderStatus: str(Active/Cancelled/Completed) # Filter by status, offset: str # The number of items to skip before starting to collect the result set., limit: str # The maximum number of items to return. If the value exceeds the maximum, then the maximum value will be used.}\n@returns(200) {orders: [map], links: map{first: map{href: str}, prev: map{href: str}, next: map{href: str}, last: map{href: str}}} # OK\n\n@endpoint GET /orders/{orderId}\n@desc Get an `order`\n@required {orderId: str(uuid) # UUID of the `order` to get}\n@returns(200) OK\n\n@end\n"}}