ComboCurve v1 custom-columns API

custom-columns operations

OpenAPI Specification

combocurve-v1-custom-columns-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: ComboCurve REST v1 custom-columns API
  version: v1
  description: 'ComboCurve REST API for oil & gas well forecasting, type curves, production data, reserves and economics. Base URL https://api.combocurve.com. Authentication requires two headers: a signed bearer token (Authorization) generated from a Service Account Key, and an x-api-key. Derived by API Evangelist from the official public ComboCurve Postman collection.'
  contact:
    name: ComboCurve API Support
    url: https://forum.api.combocurve.com/
servers:
- url: https://api.combocurve.com
  description: Production
security:
- apiKeyAuth: []
  bearerAuth: []
tags:
- name: v1 custom-columns
  description: custom-columns operations
paths:
  /v1/custom-columns/{collection}:
    get:
      operationId: get-custom-columns
      summary: get-custom-columns
      tags:
      - v1 custom-columns
      description: Returns the custom column that matches the given collection.
      parameters:
      - name: collection
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
        '429':
          description: Too many requests - rate limit exceeded
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Company API key from the ComboCurve API & Sync page.
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Signed bearer token generated from the Service Account Key.