بنقرة واحدة
external-apis
Access external APIs through Replit-managed billing
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Access external APIs through Replit-managed billing
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Anthropic AI integration via Replit AI Integrations proxy (JavaScript/TypeScript). Provides Anthropic-compatible API access without requiring your own API key.
Gemini AI integration via Replit AI Integrations proxy (JavaScript/TypeScript). Provides Gemini-compatible API access without requiring your own API key.
OpenAI AI integration via Replit AI Integrations proxy (JavaScript/TypeScript). Provides OpenAI-compatible API access without requiring your own API key.
OpenRouter AI integration via Replit AI Integrations proxy (JavaScript/TypeScript). Provides OpenRouter-compatible API access without requiring your own API key.
Apply a user's saved artifact template (a reusable slides/web style donor) when they ask to build or restyle an artifact "with my template", "using my saved template", "in my brand style", or refer to a template by name. Use this to discover the user's saved templates and materialize one for use.
Use when creating or updating the artifact.toml for artifacts such as websites, web apps, mobile apps, slide decks, pitch decks, videos, and data visualizations.
| name | external-apis |
| description | Access external APIs through Replit-managed billing |
This skill provides access to external APIs through Replit-managed passthrough billing. Requests are proxied through OpenInt with managed credentials.
externalApi__<connector_name> from codeExecution.query for URL parameters and read result.body.attached_assets/ and present them.The callback decodes the response by Content-Type:
result.body is the parsed object.text/* → result.body is a string.result.body is a base64 string and result.encoding === 'base64'. Decode it with Buffer.from(result.body, 'base64') before writing the file.Responses are capped (~1 MB); larger media cannot be returned in-band yet. Prefer operations that return a hosted URL, or request smaller media until object-storage handoff is available.