{"files":{"SKILL.md":"---\nname: api\ndescription: \" API skill. Use when working with  for extractor. Covers 2 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# \nAPI version: 1.0\n\n## Auth\nNo authentication required.\n\n## Base URL\nhttps://run.import.io/\n\n## Setup\n1. No auth setup needed\n3. POST /extractor/{extractorId}/start -- create first start\n\n## Endpoints\n\n2 endpoints across 1 groups. See references/api-spec.lap for full details.\n\n### extractor\n| Method | Path | Description |\n|--------|------|-------------|\n| POST | /extractor/{extractorId}/start | Launch a crawl from an extractor that a user owns. |\n| POST | /extractor/{extractorId}/cancel | Cancel an existing crawl. |\n\n## Common Questions\n\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"Create a start?\" -> POST /extractor/{extractorId}/start\n- \"Create a cancel?\" -> POST /extractor/{extractorId}/cancel\n\n## Response Tips\n- Check response schemas in references/api-spec.lap for field details\n- Create/update endpoints typically return the created/updated object\n\n## CLI\n\n```bash\n# Update this spec to the latest version\nnpx @lap-platform/lapsh get api -o references/api-spec.lap\n\n# Search for related APIs\nnpx @lap-platform/lapsh search 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 \n@base https://run.import.io/\n@version 1.0\n@endpoints 2\n@toc extractor(2)\n\n@endpoint POST /extractor/{extractorId}/start\n@desc Launch a crawl from an extractor that a user owns.\n@required {extractorId: any # the id of the extractor to start crawling with}\n@returns(200) OK\n@errors {404: Unable to find supplied extractor ID., 401: User doesn't own this extractor, or doesn't have a valid session., 400: Extractor is archived or a crawl already in progress.}\n\n@endpoint POST /extractor/{extractorId}/cancel\n@desc Cancel an existing crawl.\n@required {extractorId: any # extractorId}\n@returns(200) OK\n@errors {404: Unable to find supplied extractor ID., 401: User doesn't own this extractor, or doesn't have a valid session., 400: No in progress crawl found to cancel.}\n\n@end\n"}}