Add item
documentedAdd a new item (URL, title, tags) to the user's Pocket list.
POST /v3/addItemsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://getpocket.com/v3/add" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"consumer_key": "{{GETPOCKET_API_KEY}}", "access_token": "{{OAUTH2_ACCESS_TOKEN}}", "url": "{{$url}}", "title": "{{$title}}", "tags": {{$tags}}}'