API Documentation

This documentation covers the various job types available through the Customer Jobs API. Each job type allows you to perform specific network tests from different locations and ISPs.

OpenAPI Documentation

For a comprehensive and interactive view of our API, please refer to our OpenAPI specification:

Bitping API OpenAPI Specification


For the best experience, we recommend viewing the specification in an OpenAPI viewer such as Swagger UI or ReDoc. You can also import the URL into Yaak, Postman, Insomnia or your favourite desktop API client.

DNS Lookup

Perform a DNS lookup for specified hostnames.

Endpoint

POST /jobs/customer/dns

Request Body

FieldTypeDescription
hostnamesstring[]Array of hostnames to lookup
countryCodestring (optional)Filter nodes by country code
ispRegexstring (optional)Filter nodes by ISP regex
configurationobject (optional)DNS-specific configuration

Configuration Object

FieldTypeDescription
dnsServersstring[] (optional)List of DNS servers to use (e.g. ‘8.8.8.8:53’, ‘1.1.1.1:53’)
lookupTypesstring[] (optional)Types of DNS lookups to perform (e.g., “MX”, “NS”, “IP”, “TXT”, “SOA”, “SRV”, “TLSA”)

Response

Returns the DNS lookup results along with node information.

{
  nodeInfo: {
    operatingSystem: string;
    isp: string;
    mobile: boolean;
    proxy: boolean;
    regionName: string;
    countryCode: string;
    lat: number;
    lon: number;
  };
  results: Array<{
    endpoint: string;
    duration: number;
    error?: string;
    result?: {
      mx: string[];
      ns: string[];
      ips: string[];
      txt: string[];
      soa: string[];
      srv: string[];
      tlsa: string[];
      dnsServers: string[];
    };
  }>;
}

HTTP Request

Perform an HTTP request to specified hostnames.

Endpoint

POST /jobs/customer/http/{method}

Parameters

ParameterDescription
methodThe HTTP method to use (e.g., GET, POST, PUT, PATCH, DELETE, OPTIONS, HEAD)

Request Body

FieldTypeDescription
hostnamesstring[]Array of hostnames to send the request to
countryCodestring (optional)Filter nodes by country code
ispRegexstring (optional)Filter nodes by ISP regex
configurationobject (optional)HTTP-specific configuration

Configuration Object

FieldTypeDescription
headersobject (optional)Key-value pairs of HTTP headers
regexstring (optional)Regex pattern to match in the response
statusCodesnumber[] (optional)Expected status codes
bodystring (optional)Request body for POST, PUT, PATCH requests
returnBodyboolean (optional)Whether to return the response body

Response

Returns the HTTP response along with node information.

{
  nodeInfo: {
    operatingSystem: string;
    isp: string;
    mobile: boolean;
    proxy: boolean;
    regionName: string;
    countryCode: string;
    lat: number;
    lon: number;
  };
  results: Array<{
    endpoint: string;
    duration: number;
    error?: string;
    result?: {
      statusCode: number;
      bodyHash: string;
      matches: string[];
      headers: Record<string, string>;
      body?: string;
    };
  }>;
}

ICMP Ping

Perform a ping test to specified hostnames.

Endpoint

POST /jobs/customer/ping/icmp

Request Body

FieldTypeDescription
hostnamesstring[]Array of hostnames to ping
countryCodestring (optional)Filter nodes by country code
ispRegexstring (optional)Filter nodes by ISP regex
configurationobject (optional)ICMP-specific configuration

Configuration Object

FieldTypeDescription
attemptsnumber (optional)Number of ping attempts
payloadSizenumber (optional)Size of the ping payload
timeoutMillisnumber (optional)Timeout in milliseconds

Response

Returns the ping results along with node information.

{
  nodeInfo: {
    operatingSystem: string;
    isp: string;
    mobile: boolean;
    proxy: boolean;
    regionName: string;
    countryCode: string;
    lat: number;
    lon: number;
  };
  results: Array<{
    endpoint: string;
    duration: number;
    error?: string;
    result?: {
      avg: number;
      max: number;
      min: number;
      stdDev: number;
      ipAddress: string;
      packetLoss: number;
      packetsRecv: number;
      packetsSent: number;
      trips: number;
      attempts: number;
    };
  }>;
}

HLS Stream Test

Perform an HLS (HTTP Live Streaming) test on specified stream URLs.

Endpoint

POST /jobs/customer/hls

Request Body

FieldTypeDescription
hostnamesstring[]Array of HLS stream URLs to test
countryCodestring (optional)Filter nodes by country code
ispRegexstring (optional)Filter nodes by ISP regex
configurationobject (optional)HLS-specific configuration

Configuration Object

FieldTypeDescription
headersobject (optional)Key-value pairs of HTTP headers

Response

Returns the HLS stream test results along with node information.

{
  nodeInfo: {
    operatingSystem: string;
    isp: string;
    mobile: boolean;
    proxy: boolean;
    regionName: string;
    countryCode: string;
    lat: number;
    lon: number;
  };
  results: Array<{
    endpoint: string;
    duration: number;
    error?: string;
    result?: {
      master: {
        file: string;
        downloadMetrics: {
          size: number;
          timeMs: number;
          bytesPerSecond: number;
        };
        metrics: {
          dnsResolveDurationMs?: number;
          tcpConnectDurationMs: number;
          tlsHandshakeDurationMs?: number;
          httpGetSendDurationMs: number;
          httpTtfbDurationMs: number;
        };
        renditions: Array<{
          file: string;
          downloadMetrics: {
            size: number;
            timeMs: number;
            bytesPerSecond: number;
          };
          metrics: {
            dnsResolveDurationMs?: number;
            tcpConnectDurationMs: number;
            tlsHandshakeDurationMs?: number;
            httpGetSendDurationMs: number;
            httpTtfbDurationMs: number;
          };
          contentFragmentMetrics: Array<{
            file: string;
            contentFragmentDurationSecs: number;
            metrics: {
              dnsResolveDurationMs?: number;
              tcpConnectDurationMs: number;
              tlsHandshakeDurationMs?: number;
              httpGetSendDurationMs: number;
              httpTtfbDurationMs: number;
            };
            downloadMetrics: {
              size: number;
              timeMs: number;
              bytesPerSecond: number;
            };
            downloadRatio: number;
          }>;
          targetDurationSecs: number;
          discontinuitySequence: number;
          resolution: string;
          bandwidth: number;
        }>;
      };
      rendition: {
        file: string;
        downloadMetrics: {
          size: number;
          timeMs: number;
          bytesPerSecond: number;
        };
        metrics: {
          dnsResolveDurationMs?: number;
          tcpConnectDurationMs: number;
          tlsHandshakeDurationMs?: number;
          httpGetSendDurationMs: number;
          httpTtfbDurationMs: number;
        };
        contentFragmentMetrics: Array<{
          file: string;
          contentFragmentDurationSecs: number;
          metrics: {
            dnsResolveDurationMs?: number;
            tcpConnectDurationMs: number;
            tlsHandshakeDurationMs?: number;
            httpGetSendDurationMs: number;
            httpTtfbDurationMs: number;
          };
          downloadMetrics: {
            size: number;
            timeMs: number;
            bytesPerSecond: number;
          };
          downloadRatio: number;
        }>;
        targetDurationSecs: number;
        discontinuitySequence: number;
        resolution: string;
        bandwidth: number;
      };
    };
  }>;
}

© 2024 Bitping Pty. Ltd.