Public
Documentation Settings

JetML Public API

Welcome to the JetML public api. You're in the right place to learn how to integrate the latest machine learning tools into your products and services. This api allows you to easily control core JetML features including creating, running, and managing workflows.

Step 1

Create an api key from JetML dashboard. Assign permission role for workspace to viewer, editor, or owner. You must have admin access to the JetML account.

Step 2

Use your api key to access endpoints mentioned in this api documentation. You can also use your api key to automate workflows using tools like Zapier.

AUTHORIZATIONBearer Token
Token

accounts

Access resources within your JetML accounts.

AUTHORIZATIONBearer Token
This folder is using Bearer Token from collectionJetML Public API

GETget accounts

https://api.endpoint.jetml.com/accounts

Get an object containing all of the accounts the provided api key has access to.

Allowed Permission Role(s): viewer, editor, owner

AUTHORIZATIONBearer Token
This request is using Bearer Token from collectionJetML Public API
HEADERS
Authorization

Bearer {{api-key}}

Example Request
curl
curl --location 'https://api.endpoint.jetml.com/accounts' \
--header 'Authorization: Bearer {{api-key}}'
200 OK
Example Response
json
{
  "links": {
    "accounts/123": {
      "billing_alerts": null,
      "created_by": "github|123",
      "created_timestamp": "Mon, 09 Aug 2021 22:18:53 GMT",
      "description": "Users Account",
      "href": "https://app.endpoint.jetml.com/accounts/123",
      "last_updated_by": "github|123",
      "last_updated_timestamp": "Mon, 13 Mar 2023 04:25:38 GMT",
      "method": "GET",
      "name": "Users Account",
      "role": "api",
      "tags": {
        "cost-center": "123456",
        "name": "Users account"
      }
    }
  },
  "method": "GET",
  "pending_accounts": [],
  "resource": "https://app.endpoint.jetml.com/accounts"
}
Date

Mon, 13 Mar 2023 04:37:06 GMT

Content-Type

application/json

Content-Length

529

Connection

keep-alive

Contenttype

application/json

Apigw-Requestid

Bs9BghL6PHcESjw=

workflows

AUTHORIZATIONBearer Token
This folder is using Bearer Token from collectionJetML Public API