Documentation for automated readers
A curated documentation index is available at: https://grafana.com/llms.txt
A complete documentation index is available at: https://grafana.com/llms-full.txt
These indexes can help with page discovery before fetching individual documents.
This page is also available in Markdown, which may be easier for automated readers and AI tools to parse than HTML. The Markdown version is available at https://grafana.com/docs/k6/next/javascript-api/jslib/httpx/asyncrequest.md, or by sending Accept: text/markdown to https://grafana.com/docs/k6/next/javascript-api/jslib/httpx/asyncrequest/. For broader documentation discovery, the curated index is available at https://grafana.com/llms.txt and the complete index is available at https://grafana.com/llms-full.txt.
This is documentation for the next version of Grafana k6 documentation. For the latest stable release, go to the latest version.
asyncRequest(method, url, [body], [params])
Generic method for making arbitrary asynchronous HTTP requests.
Note, this method returns a Promise. You must use the await keyword to resolve it.
| Parameter | Type | Description |
|---|---|---|
| method | string | HTTP method. Must be uppercase (GET, POST, PUT, PATCH, OPTIONS, HEAD, etc) |
| url | string | HTTP URL. If baseURL is set, provide only path. |
| body (optional) | null / string / object / ArrayBuffer / SharedArray | Request body; objects will be x-www-form-urlencoded. Set to null to omit the body. |
| params (optional) | null or object {} | Additional parameters for this specific request. |
Returns
| Type | Description |
|---|---|
| Promise with Response | HTTP Response object. |
Example
import { Httpx } from 'https://jslib.k6.io/httpx/0.1.0/index.js';
const session = new Httpx({
baseURL: 'https://quickpizza.grafana.com/api',
timeout: 20000, // 20s timeout.
});
export default async function testSuite() {
const resp_get = await session.asyncRequest('GET', `/status/200`);
const resp_post = await session.asyncRequest('POST', `/status/200`, { key: 'value' });
const resp_put = await session.asyncRequest('PUT', `/status/200`, { key: 'value' });
const resp_patch = await session.asyncRequest('PATCH', `/status/200`, { key: 'value' });
const resp_delete = await session.asyncRequest('DELETE', `/status/200`);
// specific methods are also available.
const respGet = await session.asyncGet(`/status/200`);
const respPost = await session.asyncPost(`/status/200`, { key: 'value' });
const respPut = await session.asyncPut(`/status/200`, { key: 'value' });
const respPatch = await session.asyncPatch(`/status/200`, { key: 'value' });
const respDelete = await session.asyncDelete(`/status/200`);
}Was this page helpful?
Related resources from Grafana Labs

