x402-chainlink
    Preparing search index...

    Interface CREHttpRequest

    CRE HTTP request

    interface CREHttpRequest {
        body?: unknown;
        headers?: Record<string, string>;
        method: "GET" | "POST" | "PUT" | "DELETE";
        timeout?: number;
        url: string;
    }
    Index

    Properties

    body?: unknown

    Request body

    headers?: Record<string, string>

    Request headers

    method: "GET" | "POST" | "PUT" | "DELETE"

    HTTP method

    timeout?: number

    Response timeout in ms

    url: string

    Request URL