cURL → Code Converter
Paste any cURL command and instantly export a Postman v2.1 collection, Playwright API test, Rest Assured (Java), k6 load test, Cypress, Python, Axios, fetch, HTTPie, or PowerShell — with checks, auth, and multipart handled correctly. Nothing leaves your browser.
import { test, expect } from '@playwright/test';
test('POST https://api.example.com/v1/users', async ({ request }) => {
const response = await request.post("https://api.example.com/v1/users", {
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer sk_live_abc123def456ghi789jkl012mno345",
"Accept": "application/json",
},
params: {
"active": "true",
"role": "admin",
},
data: {
"name": "Alice",
"email": "alice@example.com",
"roles": [
"admin",
"qa"
]
},
});
expect(response.status()).toBeGreaterThanOrEqual(200);
expect(response.status()).toBeLessThan(300);
});Why this converter beats curlconverter.com and Postman's web importer
Test-framework targets
Not just clients — real Playwright, Rest Assured, k6, and Cypress output with assertions and thresholds pre-wired.
Local-only, secret-safe
Every generator runs in your browser. Detects Authorization / Cookie / X-API-Key and masks them in preview so you can screenshot safely.
Postman v2.1 collection
Not a text string — a valid collection JSON with folders, auth block, and pm.test scaffolding. File → Import in Postman.
Handles every body type
JSON (pretty-printed + validated), form-urlencoded, multipart (--form), and binary uploads — mapped to the framework's native API.
Chrome DevTools ready
Parses bash and PowerShell 'Copy as cURL' output — line continuations, --data-raw, --data-urlencode, --cookie all supported.
SEO-tuned & QA-focused
Built and maintained by SoftwareTestPilot's QA team — with tutorials on how each output fits into a real test suite.
Pair this with
JSON / JSONPath / JMESPath Tester
After you convert the request, paste the response to build and export assertions for the same framework.
XPath & CSS Selector Generator
Building a UI + API test suite? Grab robust locators for the browser side of the flow.
API Testing Interview Q&A
60+ Q&As covering status codes, contract testing, auth, and Postman workflows.
Playwright Interview Q&A
Deep dive into request fixture, storageState, and API + UI hybrid tests.
Postman Interview Q&A
pm.test, Newman CLI, environments, and collection runners — for interviews and daily work.
SoftwareTestPilot Blog
Full workflow guides from cURL to CI: parse, assert, and load-test — plus API interview prep.