apify-sdk-integration
Integrate Apify Actors into Your Application
Adding managed scraping and automation requires correct client setup, Actor inputs, and result handling. This skill provides practical Apify integration patterns for common application workflows.
Instalar con mi Agente
Copia esta solicitud en tu Agente. Incluye la página canónica del Skill y el manifiesto.
Review the Skillstore skill "apify-sdk-integration" from https://skillstore.io/skills/apify-apify-sdk-integration.md and its manifest at https://skillstore.io/api/skills/apify-apify-sdk-integration/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.Tu Agente debe seguir mostrando su plan y solicitar cualquier confirmación exigida por la política de seguridad.
Recursos legibles por agentes
Usa estos enlaces cuando un agente de IA, crawler o script necesite contexto limpio en vez de leer la página completa.
Pruébalo
Usando "apify-sdk-integration". Add the Apify web scraper to a TypeScript service and collect up to ten pages.
Resultado esperado:
A TypeScript integration plan with secure token configuration, Actor execution, dataset retrieval, and clear failure handling.
Usando "apify-sdk-integration". Run an Actor asynchronously from Python and process its results later.
Resultado esperado:
A Python workflow that starts the run, stores its identifier, waits for completion, and retrieves paginated dataset records.
Usando "apify-sdk-integration". Use Apify from a language without an official client.
Resultado esperado:
A REST integration outline covering authenticated run creation, status polling, and dataset retrieval.
Auditoría de seguridad
SeguroAll 65 static findings are false positives in context. The detections reflect Markdown backticks, official Apify endpoints, secure token access, and benign API terminology. No command execution, exfiltration, reconnaissance, or prompt injection was found.
Factores de riesgo
⚙️ Comandos externos (40)
🌐 Acceso a red (17)
🔑 Variables de entorno (4)
Compartir y citar este informe
Comparte el informe de evaluación versionado, la insignia neutral, la tarjeta insertable y las citas. Skillstore presenta evidencias sin decidir si este Skill es seguro.
Copiar enlace del informe
https://skillstore.io/skills/apify-apify-sdk-integration/audits/1?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_reportInsignia Markdown
[](https://skillstore.io/skills/apify-apify-sdk-integration?utm_source=security_passport_badge)Insignia HTML
<a href="https://skillstore.io/skills/apify-apify-sdk-integration?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/apify-apify-sdk-integration/security.svg" alt="Skillstore security assessment" loading="lazy"></a>Tarjeta para insertar
<iframe src="https://skillstore.io/embed/skills/apify-apify-sdk-integration.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>Citas académicas (APA · BibTeX · CFF)
Cita APA
apify. (2026). apify-sdk-integration security audit report (audit version 1) [Author version unspecified]. Skillstore. https://skillstore.io/skills/apify-apify-sdk-integration/audits/1Cita BibTeX
@techreport{apify-apify-apify-sdk-integration-2026,
author = {apify},
title = {apify-sdk-integration security audit report (audit version 1)},
institution = {Skillstore},
year = {2026},
number = {1},
url = {https://skillstore.io/skills/apify-apify-sdk-integration/audits/1},
note = {Author version unspecified}
}CITATION.cff
cff-version: 1.2.0
message: "If you use this Skill, cite its author and this versioned security audit report."
title: "apify-sdk-integration security audit report (audit version 1)"
version: "unspecified"
type: report
authors:
- name: "apify"
date-released: "2026-08-15"
url: "https://skillstore.io/skills/apify-apify-sdk-integration/audits/1"
identifiers:
- type: other
value: "skillstore:apify-apify-sdk-integration:audit:1"
description: "Skillstore immutable audit report identifier"
Puntuación de Skillstore
Por qué esta puntuación Confianza de la evidencia: MedioLo que puedes crear
Add Scraping to a Web Application
Connect an existing JavaScript or TypeScript service to an Apify Actor and consume its dataset results.
Automate Python Data Collection
Run an Actor from a Python workflow, wait for completion, and pass extracted records into a pipeline.
Integrate Apify Through REST
Start runs, check status, and retrieve datasets from a language without an official Apify client.
Prueba estos prompts
Add Apify to my [JavaScript or Python] application. Show the correct package, secure APIFY_TOKEN setup, and a minimal connection example.
Integrate Actor [actor ID] into this application. Use this input: [requirements]. Wait for completion and return paginated dataset items.
Create an asynchronous Apify workflow for [use case]. Start the Actor, preserve the run ID, handle failures, and retrieve results after completion.
Review this Apify integration for production use. Add timeouts, pagination, structured error handling, client reuse, secret management, and Actor-specific input validation.
Mejores prácticas
- Store APIFY_TOKEN in an environment variable or managed secrets service.
- Check the selected Actor input schema before constructing requests.
- Set timeouts and paginate large datasets to control runtime and memory use.
Evitar
- Do not hardcode API tokens in source code or commit them to version control.
- Do not install the apify package when the application only needs to call Actors.
- Do not assume every Actor accepts the same input or returns the same output.