{"files":{"SKILL.md":"---\nname: zapier-ai-actions-api\ndescription: \"Zapier AI Actions API skill. Use when working with Zapier AI Actions for api. Covers 5 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# Zapier AI Actions API\nAPI version: main_api_v1\n\n## Auth\nApiKey x-api-key in header | ApiKey api_key in query | OAuth2 | ApiKey nlasession in cookie\n\n## Base URL\nhttps://actions.zapier.com\n\n## Setup\n1. Set your API key in the appropriate header\n2. GET /api/v1/check/ -- verify access\n3. POST /api/v1/exposed/{exposed_app_action_id}/execute/ -- create first execute\n\n## Endpoints\n\n5 endpoints across 1 groups. See references/api-spec.lap for full details.\n\n### api\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /api/v1/check/ | Check |\n| GET | /api/v1/configuration-link/ | Get Configuration Link |\n| GET | /api/v1/exposed/ | List Exposed Actions |\n| POST | /api/v1/exposed/{exposed_app_action_id}/execute/ | Execute App Action Endpoint |\n| GET | /api/v1/execution-log/{execution_log_id}/ | Get Execution Log Endpoint |\n\n## Common Questions\n\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"List all check?\" -> GET /api/v1/check/\n- \"List all configuration-link?\" -> GET /api/v1/configuration-link/\n- \"List all exposed?\" -> GET /api/v1/exposed/\n- \"Create a execute?\" -> POST /api/v1/exposed/{exposed_app_action_id}/execute/\n- \"Get execution-log details?\" -> GET /api/v1/execution-log/{execution_log_id}/\n- \"How to authenticate?\" -> See Auth section\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 zapier-ai-actions-api -o references/api-spec.lap\n\n# Search for related APIs\nnpx @lap-platform/lapsh search zapier-ai-actions-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 Zapier AI Actions API\n@base https://actions.zapier.com\n@version main_api_v1\n@auth ApiKey x-api-key in header | ApiKey api_key in query | OAuth2 | ApiKey nlasession in cookie\n@endpoints 5\n@toc api(5)\n\n@endpoint GET /api/v1/check/\n@desc Check\n@returns(200) OK\n\n@endpoint GET /api/v1/configuration-link/\n@desc Get Configuration Link\n@returns(200) OK\n\n@endpoint GET /api/v1/exposed/\n@desc List Exposed Actions\n@returns(200) {results: [map], configuration_link: str} # OK\n\n@endpoint POST /api/v1/exposed/{exposed_app_action_id}/execute/\n@desc Execute App Action Endpoint\n@required {exposed_app_action_id: str(uuid), instructions: str # Plain english instructions. Provide as much detail as possible, even if other fields are present.}\n@optional {preview_only: bool=False # If true, we will not execute the action, but will return the params of the preview.}\n@returns(200) {id: str, action_used: str, input_params: map, review_url: str, result: any, additional_results: [map], result_field_labels: any, status: str, error: any, assistant_hint: any} # OK\n@errors {400: Bad Request}\n\n@endpoint GET /api/v1/execution-log/{execution_log_id}/\n@desc Get Execution Log Endpoint\n@required {execution_log_id: str(uuid)}\n@returns(200) {id: str, action_used: str, input_params: map, review_url: str, result: any, additional_results: [map], result_field_labels: any, status: str, error: any, assistant_hint: any} # OK\n@errors {400: Bad Request}\n\n@end\n"}}