apify-deploy-integration

Featured

Deploy Apify Actors and integrate scraping into external applications. Use when deploying Actors to the platform, integrating Actor results into web apps, or connecting Apify with external services. Trigger: "deploy apify actor", "apify Vercel integration", "apify production deploy", "integrate apify results", "apify API endpoint".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Apify Deploy Integration ## Overview Deploy Actors to the Apify platform and integrate their results into external applications. Covers `apify push` deployment, API-triggered runs from web apps, scheduled scraping with data pipelines, and platform-specific integration patterns. ## Prerequisites - Actor tested locally (`apify run`) - `apify login` completed - Target application ready for integration ## Instructions ### Step 1: Deploy Actor to Platform ```bash # Push Actor code to Apify apify push # Push to a specific Actor (creates if doesn't exist) apify push username/my-scraper # Pull an existing Actor to modify apify pull username/existing-actor ``` ### Step 2: Integrate with a Web Application The most common pattern: trigger an Actor from your app and consume results. ```typescript // src/services/apify.ts import { ApifyClient } from 'apify-client'; const client = new ApifyClient({ token: process.env.APIFY_TOKEN }); interface ScrapeResult { url: string; title: string; price: number; inStock: boolean; } /** * Run a scraping Actor and return typed results. * Blocks until the Actor finishes (synchronous pattern). */ export async function scrapeProducts(urls: string[]): Promise<ScrapeResult[]> { const run = await client.actor('username/product-scraper').call({ startUrls: urls.map(url => ({ url })), maxItems: 500, }, { memory: 2048, timeout: 600, // 10 minutes }); if (run.status !== 'SUCCEEDED') { throw new Error(`Scrape...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

apify-core-workflow-a

Build a complete web scraping Actor with Crawlee and deploy to Apify. Use when implementing end-to-end scraping: input schema, crawler, data extraction, dataset output, and platform deployment. Trigger: "apify scrape website", "build apify actor", "crawlee scraper", "apify main workflow".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apify-hello-world

Run your first Apify Actor and retrieve results via apify-client. Use when starting a new Apify integration, testing connectivity, or learning the Actor call/dataset retrieval pattern. Trigger: "apify hello world", "apify example", "run an apify actor", "apify quick start", "first apify scrape".

2,266 Updated today
jeremylongshore
AI & Automation Listed

apify-automation

Automate web scraping and data extraction with Apify -- run Actors, manage datasets, create reusable tasks, and retrieve crawl results through the Composio Apify integration.

62,564 Updated 1 weeks ago
ComposioHQ
AI & Automation Featured

apify-ci-integration

Configure CI/CD pipelines for Apify Actor builds and deployments. Use when automating Actor deployment via GitHub Actions, running integration tests against Apify, or building CI/CD for scrapers. Trigger: "apify CI", "apify GitHub Actions", "apify automated deploy", "CI apify", "apify pipeline", "auto deploy actor".

2,266 Updated today
jeremylongshore
API & Backend Solid

apify-actorization

Actorization converts existing software into reusable serverless applications compatible with the Apify platform. Actors are programs packaged as Docker images that accept well-defined JSON input, perform an action, and optionally produce structured JSON output.

39,227 Updated today
sickn33