حوّل أمر curl إلى شيفرة JavaScript fetch مكافئة، بالكامل داخل متصفحك.
كيفية استخدام cURL إلى fetch
الصق أمر curl.
تُولَّد شيفرة fetch المكافئة فورا.
انسخ شيفرة JavaScript إلى مشروعك.
A converter that turns a curl command into equivalent JavaScript fetch code, parsing the method, URL, headers and body so you get a ready-to-use request instead of translating it by hand.
It is a common need: API docs and tools like browser devtools give you a curl command, but your app is written in JavaScript. This bridges the two so you can paste curl and get fetch.
It runs locally in your browser, so your command, including any tokens or credentials in the headers, never leaves your device.
It understands the common flags: -X for the method, -H for headers, -d and its variants for the body, -u for basic auth, plus -A for the user agent and -b for cookies. A data flag implies POST, matching how curl behaves.
Multi-line commands work as-is. Backslash line continuations are joined automatically, so you can paste a command exactly as it appears in documentation without cleaning it up first.
The output is a fetch call with the method, headers and body filled in, which you can drop into your code and await like any other fetch.
الأسئلة الشائعة
الشائعة منها: -X للطريقة، و -H للترويسات، و -d ومتغيراتها للجسم، و -u للمصادقة الأساسية، إضافة إلى -A و -b. تتضمن راية البيانات طلب POST.
لا. يجري التحويل بالكامل داخل متصفحك، لذا لا يغادر أمرك وأي رموز فيه جهازك أبدا.
نعم. تُدمج استمرارات الأسطر بالشرطة المائلة العكسية تلقائيا، فيمكنك لصق أمر كما يظهر تماما في التوثيق.
ضمّن هذه الأداة
أضف هذه الأداة إلى موقعك الخاص. انسخ المقتطف أدناه، ويبقى محدّثاً تلقائياً.
<iframe src="https://monu.tools/embed/ar/curl-to-fetch" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>أدوات ذات صلة
حوّل JSON إلى TOML و TOML إلى JSON، في الاتجاهين، بالكامل داخل متصفحك.
حوّل صورة إلى data URI بترميز Base64 لتضمينها في HTML أو CSS أو JSON، بالكامل داخل متصفحك.
ولّد تدرّجا من الدرجات الفاتحة والغامقة إضافة إلى الألوان المكمّلة والمتجاورة والثلاثية من لون أساسي.
حوِّل أي صورة إلى مجموعة favicon كاملة، تشمل ملف .ico وأحجام PNG وApple touch icon وملف web manifest، وتُولَّد جميعها في متصفحك.