Your version of Internet Explorer is no longer supported for security reasons.

Click here to upgrade your browser, and ensure your security.

WellDatabase API Help

Here you will find a console to test and run sample requests against our api. Additional documentation can be found on our support site.

Code Samples

To use any of the example you will need an API Key. You can access your api keys here.

  • C#

    Notes

    Example Requires Newtonsoft.Json

    
    
        object postModel = new { Filters = new { DataLastModified = new { Min = DateTime.UtcNow.AddDays(-3) }} };
        var route = "wells/search";
        var httpClient = new HttpClient();
        httpClient.DefaultRequestHeaders.Add("User-Agent", "Sample Application");
        httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
        httpClient.BaseAddress = new Uri("https://app.welldatabase.com/api/v2/");
        //add the auth key as a default header, so we can forget about it
        httpClient.DefaultRequestHeaders.Add("Api-Key", "Your API Key");
        string json = JsonConvert.SerializeObject(postModel);
        HttpContent content = new StringContent(json);
    
        content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
        var response = await httpClient.PostAsync(route, content).ConfigureAwait(false);
        response.EnsureSuccessStatusCode();
        var responseContent = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
    
        var search = JsonConvert.DeserializeObject<dynamic>(responseContent);
        int total = search.total;
        int pageSize = search.pageSize;
        int page = search.page;
        foreach (var item in search.data)
        {
            Console.Write(item.completionDate);
        }
                    
                    
  • Python 3.7+

    Notes

    Example Requires: HTTPX

    Source

    
        
      import datetime
      import httpx
      
      headers = {
          'Content-Type': 'application/json',
          'User-Agent': 'Sample Application',
          'Api-Key': 'Your API Key'
      }
      
      modifiedSince = datetime.datetime.now() - datetime.timedelta(days=10)
      
      data = {
          'Filters': {
              'DateLastModified': {
                  'Min': modifiedSince.strftime("%Y-%m-%d")
              }
          },
          'SortBy': 'DateCatalogued',
          'SortDirection': 'Descending',
          'PageSize': 2,
          'Page': 1
      }
      
      response = httpx.post("https://app.welldatabase.com/api/v2/wells/search", headers=headers, json=data)
      results = response.json()
      print(results)
        
                       
  • Python 2.7

    Notes

    Example Requires: Requests

    Source

    
    
        import datetime
        import requests
        
        headers = {
            'Content-Type' : 'application/json',
            'User-Agent' : 'Sample Application',
            'Api-Key' : 'Your API Key'
        }
        
        modifiedSince = datetime.datetime.now() - datetime.timedelta(days=100)
        
        data = {
            'Filters': {
                'DateLastModified': {
                    'Min': modifiedSince.strftime("%Y-%m-%d")
                }
            },
            'SortBy': 'DateCatalogued',
            'SortDirection': 'Descending',
            'PageSize': 2,
            'Page': 1
        }
        
        response = requests.post(url = "https://app.welldatabase.com/api/v2/wells/search", headers = headers, json = data)
        results = response.json()
        
        print results
    
                   
  • JavaScript
    
    
        let date = new Date();
        date.setDate(date.getDate() - 30);
        var request = { Filters: { DateLastModified: { Min: date } }};
        fetch( "https://app.welldatabase.com/api/v2/wells/search", {
            method: "POST",
            headers: {
                  "Content-Type" : 'application/json',
                  "User-Agent" : 'Sample Application',
                  "Api-Key" : 'Your API Key'
                },
            body: JSON.stringify(request)
        })
        .then((response) => response.json())
        .then((result) => {
            const total = result.total;
            const pageSize = result.pageSize;
            const page = result.page;
            console.table(result.data);
        });
    
                
  • Java

    Notes

    Example Requires: Gson, Apache HttpClient

    Source

    
    
        //Create http client
        Header contentType = new BasicHeader(HttpHeaders.CONTENT_TYPE, "application/json");
        Header userAgent = new BasicHeader(HttpHeaders.USER_AGENT, "Your Application Name");
        Header apiKey = new BasicHeader("Api-Key", "Your API Key");
        List<Header> headers = new ArrayList<Header>();
        headers.add(contentType);
        headers.add(userAgent);
        headers.add(apiKey);
        HttpClient httpClient = HttpClientBuilder.create().setDefaultHeaders(headers).build();
        
        //Create Request
        Request request = new Request();
        request.filters.DateLastModified = new Range<Date>();
        Date from = addDays(new Date(), -3);
        request.filters.DateLastModified.Min = from;
        String dateFormat = "yyyy-MM-dd'T'HH:mm:ss";
        SimpleDateFormat ft = new SimpleDateFormat(dateFormat);
        Gson gson = new GsonBuilder().setDateFormat(dateFormat).create();
        String postUrl = "https://app.welldatabase.com/api/v2/wells/search";// put in your url
        HttpPost post = new HttpPost(postUrl);
        String content = gson.toJson(request);//gson.tojson() converts your pojo to json
        StringEntity postingString = new StringEntity(content);
        post.setEntity(postingString);
        ResponseHandler<String> responseHandler = new BasicResponseHandler();
        
        //execute request
        String response = httpClient.execute(post, responseHandler);
        JsonObject myObject = gson.fromJson(response, JsonObject.class);
        
        //read search results
        int total = myObject.get("total").getAsInt();
        int page = myObject.get("page").getAsInt();
        int pageSize = myObject.get("pageSize").getAsInt();
        JsonArray data = myObject.get("data").getAsJsonArray();
        for (int i = 0; i < data.size(); i++) {
            JsonObject current = data.get(i).getAsJsonObject();
            String rawDate = current.get("completionDate").getAsString();
            Date completionDate = ft.parse(rawDate);
            System.out.println(completionDate);
        }
    
    

Test Console

  • ApiCounty
    • api/v2/apicounty
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apicounty/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/apicounty/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apicounty/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apicounty/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apicounty/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apicounty/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apicounty/{id}/sections
    • api/v2/apicounty/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apicounty/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apicounty/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apicounty/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
  • ApiState
    • api/v2/apistate
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apistate/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/apistate/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apistate/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apistate/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apistate/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apistate/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apistate/{id}/sections
    • api/v2/apistate/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apistate/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apistate/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/apistate/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
  • Basin
    • api/v2/basin
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/basin/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/basin/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/basin/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/basin/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/basin/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/basin/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/basin/{id}/sections
    • api/v2/basin/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/basin/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/basin/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/basin/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
  • BoreProfile
    • api/v2/boreProfile
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/boreProfile/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/boreProfile/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/boreProfile/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/boreProfile/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/boreProfile/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/boreProfile/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/boreProfile/{id}/sections
    • api/v2/boreProfile/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/boreProfile/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/boreProfile/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/boreProfile/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
  • Casings
    • api/v2/casings/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • CompletionDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        CompletionDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/casings/search
      • Request
        Verb: POST
          • Filters
            • CompletionDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • SimpleId (Integer)
          • WellId (Guid)
          • CompletionDate (DateTime)
          • CasingType (String)
          • WellboreSize (Single)
          • UpperSetDepth (Single)
          • LowerSetDepth (Single)
          • CementSacks (Single)
          • CasingSize (Single)
          • CasingWeight (Single)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        CompletionDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Completions
    • api/v2/completions/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • CompletionDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        CompletionDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/completions/search
      • Request
        Verb: POST
          • Filters
            • CompletionDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • CompletionId (String)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • CompletionDate (DateTime)
          • Operator (String)
          • WellName (String)
          • LeaseName (String)
          • LeaseId (String)
          • District (String)
          • WellNumber (String)
          • UpperPerf (Integer)
          • LowerPerf (Integer)
          • UpperPerfTVD (Integer)
          • LowerPerfTVD (Integer)
          • IPOil (Single)
          • IPGas (Single)
          • IPWater (Single)
          • CompletionType (String)
          • ElectricLogRunType (String)
          • PlugBackMD (Single)
          • PlugBackTVD (Single)
          • LeaseAcreage (Single)
          • SimpleId (Integer)
          • Formation (String)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
          • ReportedOperator (String)
          • InterpretedFormation (String)
          • CompletionPurpose (String)
          • FracMaxPSIG (Single)
          • MeasuredDepth (Single)
          • TrueVerticalDepth (Single)
          • CompletionCompanyId (Integer)
          • CompletionContactId (Integer)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        CompletionDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Country
    • api/v2/country
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/country/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/country/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/country/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/country/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/country/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/country/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/country/{id}/sections
    • api/v2/country/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/country/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/country/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/country/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
  • DeletedItems
    • api/v2/deletedItems/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • DataTypes (Collection of Strings)
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        DataTypes (Collection of Strings)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/deletedItems/search
      • Request
        Verb: POST
          • Filters
            • DataTypes (Collection of Strings)
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • SimpleId (Integer)
          • DataType (String)
          • InternalId (Int64)
          • ReferenceInternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        DataTypes (Collection of Strings)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Directionals
    • api/v2/directionals/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/directionals/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • FileNumber (String)
          • Leg (String)
          • MeasuredDepth (Single)
          • Incline (Single)
          • Azimuth (Single)
          • TVD (Single)
          • FtNS (Single)
          • NS (String)
          • FtEW (Single)
          • EW (String)
          • Latitude (Single)
          • Longitude (Single)
          • TrueLatitude (Decimal)
          • TrueLongitude (Decimal)
          • GridLatitude (Decimal)
          • GridLongitude (Decimal)
          • IsDepthChange (Boolean)
          • WdbDirectionalSurveyID (Guid)
          • SimpleId (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • DirectionalStepFormation
    • api/v2/directionalStepFormation/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/directionalStepFormation/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • FormationName (String)
          • TopDepth (Single)
          • Comments (String)
          • CompletionId (String)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • SimpleId (Integer)
          • InternalId (Int64)
          • BaseDepth (Single)
          • DateCatalogued (DateTime)
          • ReportedFormationName (String)
          • TopTvd (Single)
          • PerfFtInFormation (Single)
          • IsProducing (Boolean)
          • Thickness (Single)
          • BaseTvd (Single)
          • TvdThickness (Single)
          • DirectionalRecordId (Guid)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Disposition
    • api/v2/disposition/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/disposition/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • InternalId (Int64)
          • Id (Guid)
          • WellId (Guid)
          • SimpleId (Integer)
          • DateCatalogued (DateTime)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • ReportDate (DateTime)
          • Product (String)
          • Volume (Decimal)
          • TruckedVolume (Decimal)
          • RailVolume (Decimal)
          • CirculationVolume (Decimal)
          • LostOrStolenVolume (Decimal)
          • FlareVolume (Decimal)
          • GasLiftVolume (Decimal)
          • CarbonBlackPlantVolume (Decimal)
          • InjectedStorageVolume (Decimal)
          • ShrinkVolume (Decimal)
          • PipelineVolume (Decimal)
          • OperationsUseVolume (Decimal)
          • PressureUseVolume (Decimal)
          • InjectionVolume (Decimal)
          • UnspecifiedVolume (Decimal)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • EnvironmentalIncident
    • api/v2/environmentalIncident/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • ReportDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        ReportDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/environmentalIncident/search
      • Request
        Verb: POST
          • Filters
            • ReportDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • InternalId (Int64)
          • Id (Guid)
          • WellId (Guid)
          • SimpleId (Integer)
          • DateCatalogued (DateTime)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • StateId (String)
          • IncidentDate (DateTime)
          • IncidentDescription (String)
          • IncidentType (String)
          • IncidentStatus (String)
          • IncidentSource (String)
          • ReportedDate (DateTime)
          • ReportedToNrc (Boolean)
          • IncidentContained (Boolean)
          • IncidentContinuous (Boolean)
          • Operator (String)
          • IncidentLocationType (String)
          • IncidentField (String)
          • IncidentLatitude (Decimal)
          • IncidentLongitude (Decimal)
          • IncidentMeridian (String)
          • IncidentSection (String)
          • IncidentTownship (String)
          • IncidentRange (String)
          • IncidentQuarters (String)
          • IncidentAddress1 (String)
          • IncidentAddress2 (String)
          • IncidentAddress3 (String)
          • IncidentCity (String)
          • IncidentState (String)
          • IncidentCountry (String)
          • IncidentPostalCode (String)
          • IncidentCounty (String)
          • FireDistrict (String)
          • NearestOccupiedBuilding (String)
          • NearestWaterWell (String)
          • AffectedMedium (String)
          • AreaAffected (String)
          • AreaAffectedDetail (String)
          • IncidentCause (String)
          • Weather (String)
          • WindSpeed (String)
          • WindDirection (String)
          • EstimatedCleanUpDate (DateTime)
          • CleanUpActionsTaken (String)
          • ProtectiveTaken (String)
          • WasteDisposalLocation (String)
          • OtherResponseDetails (String)
          • NoResponseNeeded (Boolean)
          • NoResponseReason (String)
          • KnownHealthRisks (String)
          • ImmediateThreat (String)
          • DelayedThreat (String)
          • Fatalities (Boolean)
          • NumberOfFatalities (Integer)
          • Injuries (Boolean)
          • NumberOfInjuries (Integer)
          • EvacuationInfo (String)
          • ShelterInPlaceInfo (String)
          • ReportingCompanyId (Integer)
          • ReportingContactId (Integer)
          • ResponsibleCompanyId (Integer)
          • ResponsibleContactId (Integer)
          • ComplianceCompanyId (Integer)
          • ComplianceContactId (Integer)
          • PropertyOwnerCompanyId (Integer)
          • PropertyOwnerContactId (Integer)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        ReportDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • EnvironmentalIncidentComment
    • api/v2/environmentalIncidentComment/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/environmentalIncidentComment/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • InternalId (Int64)
          • Id (Guid)
          • WellId (Guid)
          • SimpleId (Integer)
          • DateCatalogued (DateTime)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • CommentDateTime (DateTime)
          • Comments (String)
          • EnvironmentalIncidentRecordId (Guid)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • EnvironmentalIncidentSubstance
    • api/v2/environmentalIncidentSubstance/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/environmentalIncidentSubstance/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • InternalId (Int64)
          • Id (Guid)
          • WellId (Guid)
          • SimpleId (Integer)
          • DateCatalogued (DateTime)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • CasNumber (String)
          • Name (String)
          • TradeName (String)
          • IsExtremelyHazardousSubstance (Boolean)
          • IsRadioactive (Boolean)
          • EstimatedVolume (String)
          • EstimatedVolumeBarrels (Decimal)
          • EstimatedVolumePounds (Decimal)
          • RecoveredVolume (String)
          • RecoveredVolumeBarrels (Decimal)
          • EnvironmentalIncidentRecordId (Guid)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Field
    • api/v2/field
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/field/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/field/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/field/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/field/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/field/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/field/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/field/{id}/sections
    • api/v2/field/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/field/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/field/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/field/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
  • Files
    • api/v2/files/download
      • Request
        Verb: POST
          • Filters
            • Ids (Collection of Guids)
      • Response
        Type Unavailable
      • Execute Sample
        Filters
        Ids (Collection of Guids)
    • api/v2/files/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • FileName (String)
            • Tags (Collection of Strings)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        Tags (Collection of Strings)
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/files/search
      • Request
        Verb: POST
          • Filters
            • FileName (String)
            • Tags (Collection of Strings)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • FileName (String)
          • MimeType (String)
          • DateLastModified (DateTime)
          • DateCreated (DateTime)
          • SimpleId (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        Tags (Collection of Strings)
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • FileTags
    • api/v2/fileTags/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • FileIds (Collection of Guids)
            • Tag (String)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        FileIds (Collection of Guids)
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/fileTags/search
      • Request
        Verb: POST
          • Filters
            • FileIds (Collection of Guids)
            • Tag (String)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • TagDescription (String)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • FileId (Guid)
          • SimpleId (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        FileIds (Collection of Guids)
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Formations
    • api/v2/formations
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/formations/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/formations/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/formations/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/formations/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/formations/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/formations/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/formations/{id}/sections
    • api/v2/formations/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/formations/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/formations/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/formations/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/formations/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/formations/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • FormationName (String)
          • TopDepth (Single)
          • Comments (String)
          • CompletionId (String)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • SimpleId (Integer)
          • InternalId (Int64)
          • BaseDepth (Single)
          • DateCatalogued (DateTime)
          • ReportedFormationName (String)
          • MethodObtained (String)
          • IsTarget (Boolean)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • FracIngredients
    • api/v2/fracingredients/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/fracingredients/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • DateLastModified (DateTime)
          • DateCreated (DateTime)
          • WellId (Guid)
          • CompletionId (String)
          • TradeName (String)
          • Supplier (String)
          • Purpose (String)
          • Name (String)
          • MaxConcentrationInAdditive (Single)
          • MassIngredient (Single)
          • HasMSDS (Boolean)
          • ConcentrationInFracFluid (Single)
          • Comment (String)
          • CASNumber (String)
          • FFId (Guid)
          • SimpleId (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
          • ReportedTradeName (String)
          • ReportedChemicalName (String)
          • ReportedSupplier (String)
          • IsProppant (Boolean)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • FracStage
    • api/v2/fracStage/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • StimDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        StimDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/fracStage/search
      • Request
        Verb: POST
          • Filters
            • StimDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • CompletionId (String)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • StimDate (DateTime)
          • StageNumber (Integer)
          • StageDescription (String)
          • Top (Single)
          • Bottom (Single)
          • FracType (String)
          • FluidType (String)
          • BaseFluid (String)
          • TotalFracFluidVolume (Single)
          • TotalFracFluidMass (Single)
          • TotalCO2Volume (Single)
          • TotalN2Volume (Single)
          • TotalProppantMass (Single)
          • PrimaryProppantAmount (String)
          • PrimaryProppantMaterial (String)
          • AcidTreatmentPresent (Boolean)
          • AcidType (String)
          • AcidConcentration (Single)
          • AcidVolume (String)
          • EnergizerPresent (Boolean)
          • Energizer (String)
          • RadioactiveTracerPresent (Boolean)
          • RadioactiveTracer (String)
          • ChemicalTracerPresent (Boolean)
          • ChemicalTracer (String)
          • BreakdownPressure (Single)
          • AverageTreatmentPressure (Single)
          • AverageTreatmentRate (Single)
          • MaxTreatmentPressure (Single)
          • ShutInPressure (Single)
          • FiveMinShutInPressure (Single)
          • FracGradient (Single)
          • SimpleId (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        StimDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Gatherer
    • api/v2/gatherer/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/gatherer/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • InternalId (Int64)
          • Id (Guid)
          • WellId (Guid)
          • SimpleId (Integer)
          • DateCatalogued (DateTime)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • CompanyName (String)
          • Product (String)
          • IsPurchaser (Boolean)
          • PurchaserPercent (Decimal)
          • IsGatherer (Boolean)
          • GathererPercent (Decimal)
          • BeginDate (DateTime)
          • EndDate (DateTime)
          • CompanyId (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • History
    • api/v2/history/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/history/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • WellId (Guid)
          • Id (Guid)
          • WellName (String)
          • Status (String)
          • StatusDate (DateTime)
          • Orginization (String)
          • Field (String)
          • EffectiveDate (DateTime)
          • Comments (String)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Horizon
    • api/v2/horizon
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/horizon/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/horizon/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/horizon/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/horizon/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/horizon/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/horizon/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/horizon/{id}/sections
    • api/v2/horizon/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/horizon/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/horizon/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/horizon/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
  • InjectionVolumes
    • api/v2/injectionVolumes/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • ReportDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        ReportDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/injectionVolumes/search
      • Request
        Verb: POST
          • Filters
            • ReportDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • WellId (Guid)
          • Id (Guid)
          • ReportDate (DateTime)
          • WaterInjection (Single)
          • GasInjection (Single)
          • CO2Injection (Single)
          • OtherInjection (Single)
          • TubingPressure (Single)
          • Lease (String)
          • LeaseId (String)
          • District (String)
          • Operator (String)
          • Field (String)
          • Formation (String)
          • Days (Integer)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
          • ReportedOperator (String)
          • ReportedFormation (String)
          • MaxTubingPressure (Single)
          • MaxCasingPressure (Single)
          • PermittedLiquidVolume (Single)
          • PermittedLiquidPressure (Single)
          • PermittedGasVolume (Single)
          • PermittedGasPressure (Single)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        ReportDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • InterpretedFormation
    • api/v2/interpretedFormation/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/interpretedFormation/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • FormationName (String)
          • TopDepth (Single)
          • Comments (String)
          • CompletionId (String)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • SimpleId (Integer)
          • InternalId (Int64)
          • BaseDepth (Single)
          • DateCatalogued (DateTime)
          • ReportedFormationName (String)
          • TopTvd (Single)
          • PerfFtInFormation (Single)
          • IsProducing (Boolean)
          • thickness (Single)
          • BaseTvd (Single)
          • TvdThickness (Single)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Lease
    • api/v2/lease
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/lease/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/lease/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/lease/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/lease/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/lease/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/lease/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/lease/{id}/sections
    • api/v2/lease/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/lease/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/lease/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/lease/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
  • Operator
    • api/v2/operator
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/operator/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/operator/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/operator/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/operator/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/operator/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/operator/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/operator/{id}/sections
    • api/v2/operator/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/operator/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/operator/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/operator/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
  • Perforations
    • api/v2/perforations/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • PerfDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        PerfDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/perforations/search
      • Request
        Verb: POST
          • Filters
            • PerfDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • SimpleId (Integer)
          • WellId (Guid)
          • CompletionId (String)
          • PerfDate (DateTime)
          • UpperPerf (Single)
          • LowerPerf (Single)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • Reservoir (String)
          • Comments (String)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        PerfDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Permit
    • api/v2/permits/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • ApprovedDate
              • Min (DateTime)
              • Max (DateTime)
            • SubmittedDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        ApprovedDate
        SubmittedDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/permits/search
      • Request
        Verb: POST
          • Filters
            • ApprovedDate
              • Min (DateTime)
              • Max (DateTime)
            • SubmittedDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • PermitId (String)
          • SubmittedDate (DateTime)
          • ApprovedDate (DateTime)
          • ExpiredDate (DateTime)
          • RejectedDate (DateTime)
          • CancelledDate (DateTime)
          • AmendedDate (DateTime)
          • PermitStatus (String)
          • PermitPurpose (String)
          • Latitude (Single)
          • Longitude (Single)
          • BottomHoleLatitude (Single)
          • BottomHoleLongitude (Single)
          • FiledBy (String)
          • Comments (String)
          • TargetFormation (String)
          • PermitCompanyId (Integer)
          • PermitContactId (Integer)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • SimpleId (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        ApprovedDate
        SubmittedDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • ProductionForecast
    • api/v2/productionForecast/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/productionForecast/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • ForecastDate (DateTime)
          • Days (Integer)
          • MonthNumber (Integer)
          • Oil (Single)
          • Gas (Single)
          • Water (Single)
          • SimpleId (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • ProductionForecastSummary
    • api/v2/productionForecastSummary/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/productionForecastSummary/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • InternalId (Int64)
          • Id (Guid)
          • WellId (Guid)
          • SimpleId (Integer)
          • DateCatalogued (DateTime)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • OilBestFitBVal (Single)
          • OilBestFitType (String)
          • GasBestFitBVal (Single)
          • GasBestFitType (String)
          • WaterBestFitBVal (Single)
          • WaterBestFitType (String)
          • TerminalDeclineMonthNumber (Integer)
          • FiveYearEurOil (Single)
          • FiveYearEurGas (Single)
          • FiveYearEurWater (Single)
          • FiveYearEurBOE (Single)
          • FiveYearEurOilConfidence (Single)
          • FiveYearEurGasConfidence (Single)
          • FiveYearEurWaterConfidence (Single)
          • FiveYearEurOilHalfMonths (Single)
          • FiveYearEurGasHalfMonths (Single)
          • FiveYearEurWaterHalfMonths (Single)
          • TenYearEurOil (Single)
          • TenYearEurGas (Single)
          • TenYearEurWater (Single)
          • TenYearEurBOE (Single)
          • TenYearEurOilConfidence (Single)
          • TenYearEurGasConfidence (Single)
          • TenYearEurWaterConfidence (Single)
          • TenYearEurOilHalfMonths (Single)
          • TenYearEurGasHalfMonths (Single)
          • TenYearEurWaterHalfMonths (Single)
          • FifteenYearEurOil (Single)
          • FifteenYearEurGas (Single)
          • FifteenYearEurWater (Single)
          • FifteenYearEurBOE (Single)
          • FifteenYearEurOilConfidence (Single)
          • FifteenYearEurGasConfidence (Single)
          • FifteenYearEurWaterConfidence (Single)
          • FifteenYearEurOilHalfMonths (Single)
          • FifteenYearEurGasHalfMonths (Single)
          • FifteenYearEurWaterHalfMonths (Single)
          • TwentyYearEurOil (Single)
          • TwentyYearEurGas (Single)
          • TwentyYearEurWater (Single)
          • TwentyYearEurBOE (Single)
          • TwentyYearEurOilConfidence (Single)
          • TwentyYearEurGasConfidence (Single)
          • TwentyYearEurWaterConfidence (Single)
          • TwentyYearEurOilHalfMonths (Single)
          • TwentyYearEurGasHalfMonths (Single)
          • TwentyYearEurWaterHalfMonths (Single)
          • TwentyFiveYearEurOil (Single)
          • TwentyFiveYearEurGas (Single)
          • TwentyFiveYearEurWater (Single)
          • TwentyFiveYearEurBOE (Single)
          • TwentyFiveYearEurOilConfidence (Single)
          • TwentyFiveYearEurGasConfidence (Single)
          • TwentyFiveYearEurWaterConfidence (Single)
          • TwentyFiveYearEurOilHalfMonths (Single)
          • TwentyFiveYearEurGasHalfMonths (Single)
          • TwentyFiveYearEurWaterHalfMonths (Single)
          • ThirtyYearEurOil (Single)
          • ThirtyYearEurGas (Single)
          • ThirtyYearEurWater (Single)
          • ThirtyYearEurBOE (Single)
          • ThirtyYearEurOilConfidence (Single)
          • ThirtyYearEurGasConfidence (Single)
          • ThirtyYearEurWaterConfidence (Single)
          • ThirtyYearEurOilHalfMonths (Single)
          • ThirtyYearEurGasHalfMonths (Single)
          • ThirtyYearEurWaterHalfMonths (Single)
          • NextFiveYearsEurOil (Single)
          • NextFiveYearsEurGas (Single)
          • NextFiveYearsEurWater (Single)
          • NextFiveYearsEurBOE (Single)
          • NextFiveYearsEurOilConfidence (Single)
          • NextFiveYearsEurGasConfidence (Single)
          • NextFiveYearsEurWaterConfidence (Single)
          • NextTenYearsEurOil (Single)
          • NextTenYearsEurGas (Single)
          • NextTenYearsEurWater (Single)
          • NextTenYearsEurBOE (Single)
          • NextTenYearsEurOilConfidence (Single)
          • NextTenYearsEurGasConfidence (Single)
          • NextTenYearsEurWaterConfidence (Single)
          • OilBestFitR2 (Single)
          • OilBestFitTerminalBreakover (Single)
          • GasBestFitR2 (Single)
          • GasBestFitTerminalBreakover (Single)
          • WaterBestFitR2 (Single)
          • WaterBestFitTerminalBreakover (Single)
          • FiftyYearEurBOE (Single)
          • FiftyYearEurGas (Single)
          • FiftyYearEurGasConfidence (Single)
          • FiftyYearEurGasHalfMonths (Single)
          • FiftyYearEurOil (Single)
          • FiftyYearEurOilConfidence (Single)
          • FiftyYearEurOilHalfMonths (Single)
          • FiftyYearEurWater (Single)
          • FiftyYearEurWaterConfidence (Single)
          • FiftyYearEurWaterHalfMonths (Single)
          • FortyYearEurBOE (Single)
          • FortyYearEurGas (Single)
          • FortyYearEurGasConfidence (Single)
          • FortyYearEurGasHalfMonths (Single)
          • FortyYearEurOil (Single)
          • FortyYearEurOilConfidence (Single)
          • FortyYearEurOilHalfMonths (Single)
          • FortyYearEurWater (Single)
          • FortyYearEurWaterConfidence (Single)
          • FortyYearEurWaterHalfMonths (Single)
          • OilBestFitTerminalDeclineRate (Single)
          • GasBestFitTerminalDeclineRate (Single)
          • WaterBestFitTerminalDeclineRate (Single)
          • OilBestFitInitialRate (Single)
          • OilBestFitInitialDecline (Single)
          • OilBestFitStartPeriod (Integer)
          • OilBestFitStartDate (DateTime)
          • GasBestFitInitialRate (Single)
          • GasBestFitInitialDecline (Single)
          • GasBestFitStartPeriod (Integer)
          • GasBestFitStartDate (DateTime)
          • WaterBestFitInitialRate (Single)
          • WaterBestFitInitialDecline (Single)
          • WaterBestFitStartPeriod (Integer)
          • WaterBestFitStartDate (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • ProductionSummary
    • api/v2/productionSummary/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • FirstThreeMonthGas
              • Min (Integer)
              • Max (Integer)
            • FirstThreeMonthOil
              • Min (Integer)
              • Max (Integer)
            • FirstThreeMonthWater
              • Min (Integer)
              • Max (Integer)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        FirstThreeMonthGas
        FirstThreeMonthOil
        FirstThreeMonthWater
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/productionSummary/search
      • Request
        Verb: POST
          • Filters
            • FirstThreeMonthGas
              • Min (Integer)
              • Max (Integer)
            • FirstThreeMonthOil
              • Min (Integer)
              • Max (Integer)
            • FirstThreeMonthWater
              • Min (Integer)
              • Max (Integer)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • WellId (Guid)
          • SimpleId (Integer)
          • Reservoir (String)
          • CumulativeOil (Double)
          • CumulativeGas (Double)
          • CumulativeBOE (Double)
          • CumulativeWater (Double)
          • CumulativeDays (Integer)
          • FirstProdDate (DateTime)
          • LastProdDate (DateTime)
          • LastTestDate (DateTime)
          • IPOil (Double)
          • IPGas (Double)
          • FirstThreeMonthOil (Double)
          • FirstThreeMonthMaxOil (Double)
          • FirstThreeMonthOilDecline (Double)
          • FirstThreeMonthGas (Double)
          • FirstThreeMonthMaxGas (Double)
          • FirstThreeMonthGasDecline (Double)
          • FirstThreeMonthBOE (Double)
          • FirstThreeMonthMaxBOE (Double)
          • FirstThreeMonthBOEDecline (Double)
          • FirstThreeMonthWater (Double)
          • FirstThreeMonthMaxWater (Double)
          • FirstThreeMonthWaterDecline (Double)
          • FirstThreeMonthDays (Integer)
          • FirstSixMonthOil (Double)
          • FirstSixMonthOilDecline (Double)
          • FirstSixMonthGas (Double)
          • FirstSixMonthGasDecline (Double)
          • FirstSixMonthBOE (Double)
          • FirstSixMonthBOEDecline (Double)
          • FirstSixMonthWater (Double)
          • FirstSixMonthWaterDecline (Double)
          • FirstSixMonthDays (Integer)
          • FirstTwelveMonthOil (Double)
          • FirstTwelveMonthOilDecline (Double)
          • FirstTwelveMonthGas (Double)
          • FirstTwelveMonthGasDecline (Double)
          • FirstTwelveMonthBOE (Double)
          • FirstTwelveMonthBOEDecline (Double)
          • FirstTwelveMonthWater (Double)
          • FirstTwelveMonthWaterDecline (Double)
          • FirstTwelveMonthDays (Integer)
          • FirstTwentyFourMonthOil (Double)
          • FirstTwentyFourMonthOilDecline (Double)
          • FirstTwentyFourMonthGas (Double)
          • FirstTwentyFourMonthGasDecline (Double)
          • FirstTwentyFourMonthBOE (Double)
          • FirstTwentyFourMonthBOEDecline (Double)
          • FirstTwentyFourMonthWater (Double)
          • FirstTwentyFourMonthWaterDecline (Double)
          • FirstTwentyFourMonthDays (Integer)
          • FirstThirtySixMonthOil (Double)
          • FirstThirtySixMonthOilDecline (Double)
          • FirstThirtySixMonthGas (Double)
          • FirstThirtySixMonthGasDecline (Double)
          • FirstThirtySixMonthBOE (Double)
          • FirstThirtySixMonthBOEDecline (Double)
          • FirstThirtySixMonthWater (Double)
          • FirstThirtySixMonthWaterDecline (Double)
          • FirstThirtySixMonthDays (Integer)
          • FirstSixtyMonthOil (Double)
          • FirstSixtyMonthOilDecline (Double)
          • FirstSixtyMonthGas (Double)
          • FirstSixtyMonthGasDecline (Double)
          • FirstSixtyMonthBOE (Double)
          • FirstSixtyMonthBOEDecline (Double)
          • FirstSixtyMonthWater (Double)
          • FirstSixtyMonthWaterDecline (Double)
          • FirstSixtyMonthDays (Integer)
          • MaxMonthOil (Double)
          • MaxOilMonthDays (Integer)
          • MaxOilMonth (DateTime)
          • MaxOilMonthNumber (Integer)
          • MaxMonthGas (Double)
          • MaxGasMonthDays (Integer)
          • MaxGasMonth (DateTime)
          • MaxGasMonthNumber (Integer)
          • MaxMonthBOE (Double)
          • MaxBOEMonthDays (Integer)
          • MaxBOEMonth (DateTime)
          • MaxBOEMonthNumber (Integer)
          • MaxMonthWater (Double)
          • MaxWaterMonthDays (Integer)
          • MaxWaterMonth (DateTime)
          • MaxWaterMonthNumber (Integer)
          • MaxThreeMonthOil (Double)
          • MaxOilThreeMonthDays (Integer)
          • MaxThreeMonthGas (Double)
          • MaxGasThreeMonthDays (Integer)
          • MaxThreeMonthBOE (Double)
          • MaxBOEThreeMonthDays (Integer)
          • MaxThreeMonthWater (Double)
          • MaxWaterThreeMonthDays (Integer)
          • MaxSixMonthOil (Double)
          • MaxOilSixMonthDays (Integer)
          • MaxSixMonthGas (Double)
          • MaxGasSixMonthDays (Integer)
          • MaxSixMonthBOE (Double)
          • MaxBOESixMonthDays (Integer)
          • MaxSixMonthWater (Double)
          • MaxWaterSixMonthDays (Integer)
          • MaxTwelveMonthOil (Double)
          • MaxOilTwelveMonthDays (Integer)
          • MaxTwelveMonthGas (Double)
          • MaxGasTwelveMonthDays (Integer)
          • MaxTwelveMonthBOE (Double)
          • MaxBOETwelveMonthDays (Integer)
          • MaxTwelveMonthWater (Double)
          • MaxWaterTwelveMonthDays (Integer)
          • LastSixMonthOil (Double)
          • LastSixMonthOilDecline (Double)
          • LastSixMonthGas (Double)
          • LastSixMonthGasDecline (Double)
          • LastSixMonthBOE (Double)
          • LastSixMonthBOEDecline (Double)
          • LastSixMonthWater (Double)
          • LastSixMonthWaterDecline (Double)
          • LastSixMonthDays (Integer)
          • LastTwelveMonthOil (Double)
          • LastTwelveMonthOilDecline (Double)
          • LastTwelveMonthGas (Double)
          • LastTwelveMonthGasDecline (Double)
          • LastTwelveMonthBOE (Double)
          • LastTwelveMonthBOEDecline (Double)
          • LastTwelveMonthWater (Double)
          • LastTwelveMonthWaterDecline (Double)
          • LastTwelveMonthDays (Integer)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • TotalProducingDays (Integer)
          • TotalProducingMonths (Integer)
          • Id (Guid)
          • LastMonthOil (Double)
          • LastMonthGas (Double)
          • LastMonthWater (Double)
          • LastMonthBOE (Double)
          • FirstMonthOil (Double)
          • FirstMonthGas (Double)
          • FirstMonthWater (Double)
          • FirstMonthBOE (Double)
          • InternalId (Int64)
          • EurBoe (Double)
          • EurOil (Double)
          • EurGas (Double)
          • EurWater (Double)
          • ProratedEurBoe (Double)
          • ProratedEurOil (Double)
          • ProratedEurGas (Double)
          • ProratedEurWater (Double)
          • FirstTwoMonthOil (Double)
          • FirstTwoMonthMaxOil (Double)
          • FirstTwoMonthOilDecline (Double)
          • FirstTwoMonthGas (Double)
          • FirstTwoMonthMaxGas (Double)
          • FirstTwoMonthGasDecline (Double)
          • FirstTwoMonthBOE (Double)
          • FirstTwoMonthMaxBOE (Double)
          • FirstTwoMonthBOEDecline (Double)
          • FirstTwoMonthWater (Double)
          • FirstTwoMonthMaxWater (Double)
          • FirstTwoMonthWaterDecline (Double)
          • FirstTwoMonthDays (Integer)
          • DateCatalogued (DateTime)
          • CumulativeGLR (Double)
          • CumulativeGOR (Double)
          • CumulativeWOR (Double)
          • EurGasBestFitBVal (Double)
          • EurGasBestFitType (String)
          • EurGasMonths (Integer)
          • EurOilBestFitBVal (Double)
          • EurOilBestFitType (String)
          • EurOilMonths (Integer)
          • EurWaterBestFitBVal (Double)
          • EurWaterBestFitType (String)
          • EurWaterMonths (Integer)
          • FirstMonthGLR (Double)
          • FirstMonthGOR (Double)
          • FirstMonthWOR (Double)
          • FirstSixMonthGLR (Double)
          • FirstSixMonthGOR (Double)
          • FirstSixMonthWOR (Double)
          • FirstSixtyMonthGLR (Double)
          • FirstSixtyMonthGOR (Double)
          • FirstSixtyMonthWOR (Double)
          • FirstTestDate (DateTime)
          • FirstThirtySixMonthGLR (Double)
          • FirstThirtySixMonthGOR (Double)
          • FirstThirtySixMonthWOR (Double)
          • FirstThreeMonthGLR (Double)
          • FirstThreeMonthGOR (Double)
          • FirstThreeMonthWOR (Double)
          • FirstTwelveMonthGLR (Double)
          • FirstTwelveMonthGOR (Double)
          • FirstTwelveMonthWOR (Double)
          • FirstTwentyFourMonthGLR (Double)
          • FirstTwentyFourMonthGOR (Double)
          • FirstTwentyFourMonthWOR (Double)
          • FirstTwoMonthGLR (Double)
          • FirstTwoMonthGOR (Double)
          • FirstTwoMonthWOR (Double)
          • IPWater (Double)
          • LastMonthGLR (Double)
          • LastMonthGOR (Double)
          • LastMonthWOR (Double)
          • LastSixMonthGLR (Double)
          • LastSixMonthGOR (Double)
          • LastSixMonthWOR (Double)
          • LastTwelveMonthGLR (Double)
          • LastTwelveMonthGOR (Double)
          • LastTwelveMonthWOR (Double)
          • MaxGLRMonth (DateTime)
          • MaxGLRMonthDays (Integer)
          • MaxGLRMonthNumber (Integer)
          • MaxGORMonth (DateTime)
          • MaxGORMonthDays (Integer)
          • MaxGORMonthNumber (Integer)
          • MaxMonthGLR (Double)
          • MaxMonthGOR (Double)
          • MaxMonthWOR (Double)
          • MaxSixMonthGLR (Double)
          • MaxSixMonthGOR (Double)
          • MaxSixMonthWOR (Double)
          • MaxThreeMonthGLR (Double)
          • MaxThreeMonthGOR (Double)
          • MaxThreeMonthWOR (Double)
          • MaxTwelveMonthGLR (Double)
          • MaxTwelveMonthGOR (Double)
          • MaxTwelveMonthWOR (Double)
          • MaxWORMonth (DateTime)
          • MaxWORMonthDays (Integer)
          • MaxWORMonthNumber (Integer)
          • InterpretedFormation (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        FirstThreeMonthGas
        FirstThreeMonthOil
        FirstThreeMonthWater
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • ProductionVolumes
    • api/v2/productionVolumes/aggregate
      • Request
        Verb: POST
          • Groups (Collection)
            • Name (String)
            • IsAliased (Boolean)
          • OrderBy
            • Field
          • Aggregate
            • Type (String)
          • Fields (Collection)
            • Name (String)
          • Filters
            • ReportDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • ReportDate (DateTime)
          • Days (Integer)
          • LeaseId (String)
          • Lease (String)
          • District (String)
          • Operator (String)
          • WellsInLease (Integer)
          • Field (String)
          • Formation (String)
          • TotalOil (Single)
          • LeaseOilAllowable (Single)
          • WellOilAllowable (Single)
          • WellOil (Single)
          • WellDailyOil (Single)
          • TotalGas (Single)
          • LeaseGasAllowable (Single)
          • WellGasAllowable (Single)
          • WellGas (Single)
          • WellDailyGas (Single)
          • TotalWater (Single)
          • WellWater (Single)
          • WellDailyWater (Single)
          • GOR (Single)
          • SimpleId (Integer)
          • ReportMonth (Integer)
          • ReportYear (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
          • ReportedOperator (String)
          • ReportedFormation (String)
          • InterpretedFormation (String)
          • MonthNumber (Integer)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Groups (Collection)
        SyncRoot
        OrderBy
        Field
        Aggregate
        Fields (Collection)
        SyncRoot
        Filters
        ReportDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/productionVolumes/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • ReportDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        ReportDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/productionVolumes/search
      • Request
        Verb: POST
          • Filters
            • ReportDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • ReportDate (DateTime)
          • Days (Integer)
          • LeaseId (String)
          • Lease (String)
          • District (String)
          • Operator (String)
          • WellsInLease (Integer)
          • Field (String)
          • Formation (String)
          • TotalOil (Single)
          • LeaseOilAllowable (Single)
          • WellOilAllowable (Single)
          • WellOil (Single)
          • WellDailyOil (Single)
          • TotalGas (Single)
          • LeaseGasAllowable (Single)
          • WellGasAllowable (Single)
          • WellGas (Single)
          • WellDailyGas (Single)
          • TotalWater (Single)
          • WellWater (Single)
          • WellDailyWater (Single)
          • GOR (Single)
          • SimpleId (Integer)
          • ReportMonth (Integer)
          • ReportYear (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
          • ReportedOperator (String)
          • ReportedFormation (String)
          • InterpretedFormation (String)
          • MonthNumber (Integer)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        ReportDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Rig
    • api/v2/rig/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • ReportDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        ReportDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/rig/search
      • Request
        Verb: POST
          • Filters
            • ReportDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • SimpleId (Integer)
          • ReportDate (DateTime)
          • WellName (String)
          • SurfaceLatitude (Double)
          • SurfaceLongitude (Double)
          • County (String)
          • State (String)
          • Basin (String)
          • WellboreProfile (String)
          • TargetDepthRange (String)
          • InternalId (Int64)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        ReportDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • ShalePlay
    • api/v2/shaleplay
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/shaleplay/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/shaleplay/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/shaleplay/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/shaleplay/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/shaleplay/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/shaleplay/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/shaleplay/{id}/sections
    • api/v2/shaleplay/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/shaleplay/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/shaleplay/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/shaleplay/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
  • Spacing
    • api/v2/spacing/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/spacing/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • WellId (Guid)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • Id (Guid)
          • SimpleId (Integer)
          • PrimaryFormation (String)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
          • ClosestOffsetWellId (Guid)
          • ClosestOffsetWellSimpleId (Integer)
          • ClosestOffsetWellAvgDistance (Integer)
          • ClosestOffsetWellRelationship (String)
          • ClosestInverseOffsetWellId (Guid)
          • ClosestInverseOffsetWellSimpleId (Integer)
          • ClosestInverseOffsetWellAvgDistance (Integer)
          • ClosestInverseOffsetWellRelationship (String)
          • ClosestInverseOffsetWellIdInFormation (Guid)
          • ClosestInverseOffsetWellSimpleIdInFormation (Integer)
          • ClosestInverseOffsetWellInFormationAvgDistance (Integer)
          • ClosestInverseOffsetWellInFormationRelationship (String)
          • ClosestOffsetWellIdInFormation (Guid)
          • ClosestOffsetWellSimpleIdInFormation (Integer)
          • ClosestOffsetWellInFormationAvgDistance (Integer)
          • ClosestOffsetWellInFormationRelationship (String)
          • ClosestOffsetVerticalWellId (Guid)
          • ClosestOffsetVerticalWellSimpleId (Integer)
          • ClosestOffsetVerticalWellDistance (Integer)
          • ClosestOffsetDisposalWellId (Guid)
          • ClosestOffsetDisposalWellSimpleId (Integer)
          • ClosestOffsetDisposalWellDistance (Integer)
          • ClosestOffsetLoggedWellId (Guid)
          • ClosestOffsetLoggedWellSimpleId (Integer)
          • ClosestOffsetLoggedWellDistance (Integer)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Status
    • api/v2/status
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/status/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/status/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/status/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/status/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/status/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/status/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/status/{id}/sections
    • api/v2/status/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/status/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/status/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/status/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
  • Stimulations
    • api/v2/stimulations/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • JobDate
              • Min (DateTime)
              • Max (DateTime)
            • StartDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        JobDate
        StartDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/stimulations/search
      • Request
        Verb: POST
          • Filters
            • JobDate
              • Min (DateTime)
              • Max (DateTime)
            • StartDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • FFId (Guid)
          • CompletionId (String)
          • StateId (String)
          • DateLastModified (DateTime)
          • DateCreated (DateTime)
          • StimDate (DateTime)
          • StartDate (DateTime)
          • EndDate (DateTime)
          • Operator (String)
          • ServiceCompany (String)
          • Top (Single)
          • Bottom (Single)
          • TopTVD (Integer)
          • BottomTVD (Integer)
          • PlugBackDepth (Integer)
          • Formation (String)
          • HoleType (String)
          • FracType (String)
          • NumberOfStages (Integer)
          • FluidType (String)
          • BaseFluid (String)
          • TotalBaseWaterVolumeGallons (Single)
          • TotalBaseNonWaterVolumeGallons (Single)
          • TotalBaseWaterMass (Single)
          • TotalFracFluidVolume (Single)
          • TotalFracFluidMass (Single)
          • TotalCO2Volume (Single)
          • TotalN2Volume (Single)
          • TotalProppantMass (Single)
          • MassCalculated (Boolean)
          • PrimaryProppantAmount (String)
          • PrimaryProppantMaterial (String)
          • AcidTreatmentPresent (Boolean)
          • AcidType (String)
          • AcidConcentration (Single)
          • AcidVolume (String)
          • CrosslinkFluid (String)
          • SurfactantPresent (Boolean)
          • Surfactant (String)
          • ScaleInhibitorPresent (Boolean)
          • ClayControlPresent (Boolean)
          • ClayControlAgent (String)
          • CelluloseBased (Boolean)
          • BreakerPresent (Boolean)
          • EnergizerPresent (Boolean)
          • Energizer (String)
          • RadioactiveTracerPresent (Boolean)
          • RadioactiveTracer (String)
          • ChemicalTracerPresent (Boolean)
          • ChemicalTracer (String)
          • BreakdownPressure (Single)
          • AverageTreatmentPressure (Single)
          • AverageTreatmentRate (Single)
          • MaxTreatmentPressure (Single)
          • ShutInPressure (Single)
          • FiveMinShutInPressure (Single)
          • BottomHolePressure (Single)
          • FracGradient (Single)
          • Comments (String)
          • WdbCompletionId (Guid)
          • StimulationCompanyId (Integer)
          • StimulationContactId (Integer)
          • SimpleId (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
          • InterpretedFormation (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        JobDate
        StartDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Tests
    • api/v2/tests/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • TestDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        TestDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/tests/search
      • Request
        Verb: POST
          • Filters
            • TestDate
              • Min (DateTime)
              • Max (DateTime)
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Guid)
          • WellId (Guid)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • CompletionId (String)
          • StateId (String)
          • TestDate (DateTime)
          • LiftingMethod (String)
          • TestHours (String)
          • TestOil (Single)
          • DailyOil (Single)
          • OilGravity (Single)
          • TestGas (Single)
          • DailyGas (Single)
          • DryGasGravity (String)
          • MixtureGravity (Single)
          • TestWater (Single)
          • DailyWater (Single)
          • GOR (Single)
          • ChokeSize (String)
          • MeterPressure (String)
          • WellHeadFlowTemp (Single)
          • ShutInPressure (Single)
          • ShutInTemp (Single)
          • SimpleId (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
          • InterpretedFormation (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        TestDate
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • TubingAndPackers
    • api/v2/tubingAndPackers/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/tubingAndPackers/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Id (Guid)
          • WellId (Guid)
          • CompletionDate (DateTime)
          • TubingSize (String)
          • TubingUpperDepth (Single)
          • TubingLowerDepth (Single)
          • PackerDepth (Single)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Type
    • api/v2/type
      • Request
        Verb: GET
        • Source: Body
          • name - Required

            Type

            String

          • pageSize - Required

            Type

            Integer

          • pageOffset - Required

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/type/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

      • Response
        Type
        • Sections (Collection)
          • Format (String)
          • Title (String)
        • Id (Integer)
        • Name (String)
      • Execute Sample
    • api/v2/type/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/type/{id}/counties
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/type/{id}/fields
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/type/{id}/operators
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/type/{id}/production
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/type/{id}/sections
    • api/v2/type/{id}/states
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/type/{id}/statuses
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/type/{id}/typecurve
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • MonthNumber (Int64)
          • SimpleId (Integer)
          • Days (Integer)
          • Oil (Double)
          • DailyOil (Double)
          • Gas (Double)
          • DailyGas (Double)
          • Water (Double)
          • DailyWater (Double)
          • BOE (Double)
          • Wells (Integer)
          • DateLastModified (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/type/{id}/types
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Integer

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Count (Single)
          • Id (Integer)
          • Name (String)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
  • WaterChemicals
    • api/v2/waterChemicals/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/waterChemicals/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • WellId (Guid)
          • USGSId (String)
          • CompletionDate (DateTime)
          • SampleDate (DateTime)
          • AnalysisDate (DateTime)
          • SpecificGracity (Single)
          • Chemical (String)
          • Units (String)
          • Amount (String)
          • Amountmg_L (String)
          • Id (Guid)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • SimpleId (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • WaterSummary
    • api/v2/waterSummary/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/waterSummary/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • WellId (Guid)
          • USGSId (String)
          • CompletionDate (DateTime)
          • SampleDate (DateTime)
          • AnalysisDate (DateTime)
          • SampleMethod (String)
          • WellType (String)
          • Elevation (Integer)
          • Depth (Double)
          • UpperPerf (Double)
          • LowerPerf (Double)
          • Formation (String)
          • Basin (String)
          • Lithology (String)
          • USGSRegion (String)
          • USGSProvince (String)
          • GeologicalPeriod (String)
          • GeologicalEra (String)
          • GeologicalEpoch (String)
          • Temp_F_ (Single)
          • SpecificGravity (Single)
          • SpecificGravityTemp_F_ (Single)
          • Resistivity_Ohm_ (Single)
          • ResistivityTemp_F_ (Single)
          • Pressure_psi_ (Single)
          • Porosity_ (String)
          • pH (Single)
          • pHTemp_F_ (Single)
          • TotalSuspendedSolids (Single)
          • TotalDisolvedSolids (Single)
          • ChargeBalanceofMajorIons_ (Single)
          • Remarks (String)
          • Id (Guid)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • SimpleId (Integer)
          • InternalId (Int64)
          • DateCatalogued (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • WellLocation
    • api/v2/wellLocation/export
      • Request
        Verb: POST
          • ExportFormat (String)
          • Callback (String)
          • Fields (Collection of Strings)
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • Settings (Collection of KeyValuePairs)
            • Key (String)
            • Value (String)
      • Response
        Type Unavailable
      • Execute Sample
        Fields (Collection of Strings)
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
    • api/v2/wellLocation/search
      • Request
        Verb: POST
          • Filters
            • HeaderFilters
            • DateLastModified
              • Min (DateTime)
              • Max (DateTime)
            • DateCreated
              • Min (DateTime)
              • Max (DateTime)
            • DateCatalogued
              • Min (DateTime)
              • Max (DateTime)
            • SimpleIds (Collection of Integers)
            • InfinityIds (Collection of Guids)
            • Ids (Collection of Guids)
          • SortBy (String)
          • SortDirection (String)
          • PageOffset (Integer)
          • PageSize (Integer)
      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • InternalId (Int64)
          • Id (Guid)
          • WellId (Guid)
          • SimpleId (Integer)
          • LocationType (String)
          • LocationStatus (String)
          • Source (String)
          • DateCatalogued (DateTime)
          • DateCreated (DateTime)
          • DateLastModified (DateTime)
          • Address1 (String)
          • Address2 (String)
          • Address3 (String)
          • City (String)
          • County (String)
          • State (String)
          • Country (String)
          • PostalCode (String)
          • Meridian (String)
          • Section (String)
          • Township (String)
          • Range (String)
          • Survey (String)
          • Abstract (String)
          • Quarters (String)
          • Footages (String)
          • Datum (String)
          • Latitude (Single)
          • Longitude (Single)
          • Epsg (String)
          • Wgs84Latitude (Single)
          • Wgs84Longitude (Single)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
        Filters
        HeaderFilters
        AOIs (Collection of Strings)
        APIs (Collection of Strings)
        Api10 (Collection of Strings)
        Api12 (Collection of Strings)
        Api14 (Collection of Strings)
        UWI (Collection of Strings)
        CumWater
        CumGas
        CumOil
        TotalDepth
        TrueVerticalDepth
        LateralLength
        PlugDate
        TestDate
        FirstProdDate
        LastProdDate
        FirstCompletionDate
        CompletionDate
        FirstPermitDate
        PermitDate
        FirstSpudDate
        SpudDate
        CountryIds
        StateIds
        CountyIds
        LeaseIds
        ShalePlayIds
        AliasedOriginalOperatorIds
        ReportedOriginalOperatorIds
        AliasedWellboreProfileIds
        ReportedWellboreProfileIds
        AliasedTypeIds
        ReportedTypeIds
        AliasedStatusIds
        ReportedStatusIds
        AliasedOperatorIds
        ParentCompanyIds
        ReportedOperatorIds
        AliasedFieldIds
        ReportedFieldIds
        AliasedPrimaryFormationIds
        ReportedPrimaryFormationIds
        ReportedPrimaryBasinIds
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
        DateLastModified
        DateCreated
        DateCatalogued
        SimpleIds (Collection of Integers)
        InfinityIds (Collection of Guids)
        Ids (Collection of Guids)
  • Well
    • api/v2/wells/{id}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Guid

      • Response
        Type
        • TotalDepth (Double)
        • Section (String)
        • Township (String)
        • Range (String)
        • Name (String)
        • Operator (String)
        • Type (String)
        • Status (String)
        • WellId (Guid)
        • DateCreated (DateTime)
        • DateLastModified (DateTime)
        • WellName (String)
        • API (String)
        • API10 (String)
        • API12 (String)
        • API14 (String)
        • UWI (String)
        • WellType (String)
        • WellStatus (String)
        • CurrentOperator (String)
        • OriginalOperator (String)
        • Field (String)
        • County (String)
        • State (String)
        • Country (String)
        • WellBoreProfile (String)
        • Latitude (Decimal)
        • Longitude (Decimal)
        • BHLatitude (Decimal)
        • BHLongitude (Decimal)
        • PermitDate (DateTime)
        • SpudDate (DateTime)
        • CompletionDate (DateTime)
        • FirstProdDate (DateTime)
        • MeasuredDepth (Single)
        • TrueVerticalDepth (Single)
        • LateralLength (Single)
        • Basin (String)
        • Play (String)
        • Grid1 (String)
        • Grid2 (String)
        • Grid3 (String)
        • Grid4 (String)
        • Grid5 (String)
        • StateId (String)
        • StateIdDesc (String)
        • ThermalMaturity (String)
        • Id (Guid)
        • SimpleId (Integer)
        • PlugDate (DateTime)
        • PermitNumber (String)
        • Lease (String)
        • District (String)
        • LeaseId (String)
        • Footages (String)
        • Quarter (String)
        • GroundElevation (Integer)
        • DrillingFloorElevation (Integer)
        • KellyBushingElevation (Integer)
        • Comments (String)
        • TestDate (DateTime)
        • PrimaryFormation (String)
        • InternalId (Int64)
        • DateCatalogued (DateTime)
        • ReportedCurrentOperator (String)
        • ReportedOriginalOperator (String)
        • ReportedField (String)
        • ReportedWellboreProfile (String)
        • WellNumber (String)
        • OffshoreWaterDepth (Integer)
        • KopLatitude (Decimal)
        • KopLongitude (Decimal)
        • HeelLatitude (Decimal)
        • HeelLongitude (Decimal)
        • ReportedWellStatus (String)
        • ReportedWellType (String)
        • Trajectory (String)
        • WellTrajectoryGridNorth (String)
        • WellTrajectory3DGridNorth (String)
        • WellTrajectoryTrueNorth (String)
        • WellTrajectory3DTrueNorth (String)
      • Execute Sample
    • api/v2/wells/{id}/{section}
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Guid

          • section - Required

            Type

            String

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        None
      • Execute Sample
    • api/v2/wells/{id}/{section}/schema
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Guid

          • section - Required

            Type

            String

      • Response
        Type Collection
        • Name (String)
        • DataType (String)
      • Execute Sample
    • api/v2/wells/{id}/files
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Guid

        • Source: Body
          • pageOffset - Optional

            Type

            Integer

          • pageSize - Optional

            Type

            Integer

      • Response
        Type
        • Total (Integer)
        • Data (Collection)
          • Url (String)
          • SubGroupKey (String)
          • Tags (Collection of Strings)
          • Id (Guid)
          • Description (String)
          • DownloadUrl (String)
          • FileId (Guid)
          • FileName (String)
          • GroupKey (String)
          • HasViewer (Boolean)
          • UploadedBy (String)
          • ViewerRoute (String)
          • DateCreated (DateTime)
        • Page (Integer)
        • PageOffset (Integer)
        • PageSize (Integer)
      • Execute Sample
    • api/v2/wells/{id}/sections
      • Request
        Verb: GET
        • Source: Route
          • id - Required

            Type

            Guid

      • Response
        Type
        • Length (Integer)
        • LongLength (Int64)
        • Rank (Integer)
        • SyncRoot
          • IsReadOnly (Boolean)
          • IsFixedSize (Boolean)
          • IsSynchronized (Boolean)
        • Execute Sample
      • api/v2/wells/export
        • Request
          Verb: POST
            • ExportFormat (String)
            • Callback (String)
            • Fields (Collection of Strings)
            • Filters
              • AOI (String)
              • AOIs (Collection of Strings)
              • APIs (Collection of Strings)
              • Api10 (Collection of Strings)
              • Api12 (Collection of Strings)
              • Api14 (Collection of Strings)
              • UWI (Collection of Strings)
              • WellName (String)
              • CumWater
                • Min (Integer)
                • Max (Integer)
              • CumGas
                • Min (Integer)
                • Max (Integer)
              • CumOil
                • Min (Integer)
                • Max (Integer)
              • TotalDepth
                • Min (Integer)
                • Max (Integer)
              • TrueVerticalDepth
                • Min (Integer)
                • Max (Integer)
              • LateralLength
                • Min (Integer)
                • Max (Integer)
              • PlugDate
                • Min (DateTime)
                • Max (DateTime)
              • TestDate
                • Min (DateTime)
                • Max (DateTime)
              • FirstProdDate
                • Min (DateTime)
                • Max (DateTime)
              • LastProdDate
                • Min (DateTime)
                • Max (DateTime)
              • FirstCompletionDate
                • Min (DateTime)
                • Max (DateTime)
              • CompletionDate
                • Min (DateTime)
                • Max (DateTime)
              • FirstPermitDate
                • Min (DateTime)
                • Max (DateTime)
              • PermitDate
                • Min (DateTime)
                • Max (DateTime)
              • FirstSpudDate
                • Min (DateTime)
                • Max (DateTime)
              • SpudDate
                • Min (DateTime)
                • Max (DateTime)
              • CountryIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • StateIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • CountyIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • LeaseIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ShalePlayIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedOriginalOperatorIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedOriginalOperatorIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedWellboreProfileIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedWellboreProfileIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedTypeIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedTypeIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedStatusIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedStatusIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedOperatorIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ParentCompanyIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedOperatorIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedFieldIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedFieldIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedPrimaryFormationIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedPrimaryFormationIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedPrimaryBasinIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • DateLastModified
                • Min (DateTime)
                • Max (DateTime)
              • DateCreated
                • Min (DateTime)
                • Max (DateTime)
              • DateCatalogued
                • Min (DateTime)
                • Max (DateTime)
              • SimpleIds (Collection of Integers)
              • InfinityIds (Collection of Guids)
              • Ids (Collection of Guids)
            • Settings (Collection of KeyValuePairs)
              • Key (String)
              • Value (String)
        • Response
          Type Unavailable
        • Execute Sample
          Fields (Collection of Strings)
          Filters
          AOIs (Collection of Strings)
          APIs (Collection of Strings)
          Api10 (Collection of Strings)
          Api12 (Collection of Strings)
          Api14 (Collection of Strings)
          UWI (Collection of Strings)
          CumWater
          CumGas
          CumOil
          TotalDepth
          TrueVerticalDepth
          LateralLength
          PlugDate
          TestDate
          FirstProdDate
          LastProdDate
          FirstCompletionDate
          CompletionDate
          FirstPermitDate
          PermitDate
          FirstSpudDate
          SpudDate
          CountryIds
          StateIds
          CountyIds
          LeaseIds
          ShalePlayIds
          AliasedOriginalOperatorIds
          ReportedOriginalOperatorIds
          AliasedWellboreProfileIds
          ReportedWellboreProfileIds
          AliasedTypeIds
          ReportedTypeIds
          AliasedStatusIds
          ReportedStatusIds
          AliasedOperatorIds
          ParentCompanyIds
          ReportedOperatorIds
          AliasedFieldIds
          ReportedFieldIds
          AliasedPrimaryFormationIds
          ReportedPrimaryFormationIds
          ReportedPrimaryBasinIds
          DateLastModified
          DateCreated
          DateCatalogued
          SimpleIds (Collection of Integers)
          InfinityIds (Collection of Guids)
          Ids (Collection of Guids)
      • api/v2/wells/search
        • Request
          Verb: POST
            • Filters
              • AOI (String)
              • AOIs (Collection of Strings)
              • APIs (Collection of Strings)
              • Api10 (Collection of Strings)
              • Api12 (Collection of Strings)
              • Api14 (Collection of Strings)
              • UWI (Collection of Strings)
              • WellName (String)
              • CumWater
                • Min (Integer)
                • Max (Integer)
              • CumGas
                • Min (Integer)
                • Max (Integer)
              • CumOil
                • Min (Integer)
                • Max (Integer)
              • TotalDepth
                • Min (Integer)
                • Max (Integer)
              • TrueVerticalDepth
                • Min (Integer)
                • Max (Integer)
              • LateralLength
                • Min (Integer)
                • Max (Integer)
              • PlugDate
                • Min (DateTime)
                • Max (DateTime)
              • TestDate
                • Min (DateTime)
                • Max (DateTime)
              • FirstProdDate
                • Min (DateTime)
                • Max (DateTime)
              • LastProdDate
                • Min (DateTime)
                • Max (DateTime)
              • FirstCompletionDate
                • Min (DateTime)
                • Max (DateTime)
              • CompletionDate
                • Min (DateTime)
                • Max (DateTime)
              • FirstPermitDate
                • Min (DateTime)
                • Max (DateTime)
              • PermitDate
                • Min (DateTime)
                • Max (DateTime)
              • FirstSpudDate
                • Min (DateTime)
                • Max (DateTime)
              • SpudDate
                • Min (DateTime)
                • Max (DateTime)
              • CountryIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • StateIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • CountyIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • LeaseIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ShalePlayIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedOriginalOperatorIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedOriginalOperatorIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedWellboreProfileIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedWellboreProfileIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedTypeIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedTypeIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedStatusIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedStatusIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedOperatorIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ParentCompanyIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedOperatorIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedFieldIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedFieldIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • AliasedPrimaryFormationIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedPrimaryFormationIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • ReportedPrimaryBasinIds
                • Included (Collection of Integers)
                • Excluded (Collection of Integers)
              • DateLastModified
                • Min (DateTime)
                • Max (DateTime)
              • DateCreated
                • Min (DateTime)
                • Max (DateTime)
              • DateCatalogued
                • Min (DateTime)
                • Max (DateTime)
              • SimpleIds (Collection of Integers)
              • InfinityIds (Collection of Guids)
              • Ids (Collection of Guids)
            • SortBy (String)
            • SortDirection (String)
            • PageOffset (Integer)
            • PageSize (Integer)
        • Response
          Type
          • Total (Integer)
          • Data (Collection)
            • WellId (Guid)
            • DateCreated (DateTime)
            • DateLastModified (DateTime)
            • WellName (String)
            • API (String)
            • API10 (String)
            • API12 (String)
            • API14 (String)
            • UWI (String)
            • WellType (String)
            • WellStatus (String)
            • CurrentOperator (String)
            • OriginalOperator (String)
            • Field (String)
            • County (String)
            • State (String)
            • Country (String)
            • WellBoreProfile (String)
            • Latitude (Decimal)
            • Longitude (Decimal)
            • BHLatitude (Decimal)
            • BHLongitude (Decimal)
            • PermitDate (DateTime)
            • SpudDate (DateTime)
            • CompletionDate (DateTime)
            • FirstProdDate (DateTime)
            • MeasuredDepth (Single)
            • TrueVerticalDepth (Single)
            • LateralLength (Single)
            • Basin (String)
            • Play (String)
            • Grid1 (String)
            • Grid2 (String)
            • Grid3 (String)
            • Grid4 (String)
            • Grid5 (String)
            • StateId (String)
            • StateIdDesc (String)
            • ThermalMaturity (String)
            • Id (Guid)
            • SimpleId (Integer)
            • PlugDate (DateTime)
            • PermitNumber (String)
            • Lease (String)
            • District (String)
            • LeaseId (String)
            • Footages (String)
            • Quarter (String)
            • GroundElevation (Integer)
            • DrillingFloorElevation (Integer)
            • KellyBushingElevation (Integer)
            • Comments (String)
            • TestDate (DateTime)
            • PrimaryFormation (String)
            • InternalId (Int64)
            • DateCatalogued (DateTime)
            • ReportedCurrentOperator (String)
            • ReportedOriginalOperator (String)
            • ReportedField (String)
            • ReportedWellboreProfile (String)
            • WellNumber (String)
            • OffshoreWaterDepth (Integer)
            • KopLatitude (Decimal)
            • KopLongitude (Decimal)
            • HeelLatitude (Decimal)
            • HeelLongitude (Decimal)
            • ReportedWellStatus (String)
            • ReportedWellType (String)
            • Trajectory (String)
            • WellTrajectoryGridNorth (String)
            • WellTrajectory3DGridNorth (String)
            • WellTrajectoryTrueNorth (String)
            • WellTrajectory3DTrueNorth (String)
          • Page (Integer)
          • PageOffset (Integer)
          • PageSize (Integer)
        • Execute Sample
          Filters
          AOIs (Collection of Strings)
          APIs (Collection of Strings)
          Api10 (Collection of Strings)
          Api12 (Collection of Strings)
          Api14 (Collection of Strings)
          UWI (Collection of Strings)
          CumWater
          CumGas
          CumOil
          TotalDepth
          TrueVerticalDepth
          LateralLength
          PlugDate
          TestDate
          FirstProdDate
          LastProdDate
          FirstCompletionDate
          CompletionDate
          FirstPermitDate
          PermitDate
          FirstSpudDate
          SpudDate
          CountryIds
          StateIds
          CountyIds
          LeaseIds
          ShalePlayIds
          AliasedOriginalOperatorIds
          ReportedOriginalOperatorIds
          AliasedWellboreProfileIds
          ReportedWellboreProfileIds
          AliasedTypeIds
          ReportedTypeIds
          AliasedStatusIds
          ReportedStatusIds
          AliasedOperatorIds
          ParentCompanyIds
          ReportedOperatorIds
          AliasedFieldIds
          ReportedFieldIds
          AliasedPrimaryFormationIds
          ReportedPrimaryFormationIds
          ReportedPrimaryBasinIds
          DateLastModified
          DateCreated
          DateCatalogued
          SimpleIds (Collection of Integers)
          InfinityIds (Collection of Guids)
          Ids (Collection of Guids)