Morpheus API Gateway LogoMorpheus API Gateway
Session

Create Model Session

Create a session with a provider using a model ID and associate it with the API key. This endpoint creates a session and automatically associates it with the API key used for authentication. Each API key can have at most one active session at a time.

POST
/api/v1/session/modelsession

Authorization

Authorization<token>

Provide the API key in either format: 'Bearer sk-xxxxxx.yyyyyyy' or just 'sk-xxxxxx.yyyyyyy'. The prefix is 9 characters long including 'sk-'.

In: header

Request Body

application/jsonRequired
sessionDurationSessionduration
Default: 3600
directPaymentDirectpayment
Default: false
failoverFailover
Default: false

Query Parameters

model_idRequiredModel Id

The blockchain ID (hex) of the model to create a session for

Response Body

Successful Response

TypeScript Definitions

Use the response body type in TypeScript.

responseRequiredunknown

Validation Error

TypeScript Definitions

Use the response body type in TypeScript.

detailDetail

@minItems 0

curl -X POST "https://api.mor.org/api/v1/session/modelsession?model_id=string" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "sessionDuration": 3600,
    "directPayment": false,
    "failover": false
  }'
const body = JSON.stringify({
  "sessionDuration": 3600,
  "directPayment": false,
  "failover": false
})

fetch("https://api.mor.org/api/v1/session/modelsession?model_id=string", {
  headers: {
    "Authorization": "<token>"
  },
  body
})
package main

import (
  "fmt"
  "net/http"
  "io/ioutil"
  "strings"
)

func main() {
  url := "https://api.mor.org/api/v1/session/modelsession?model_id=string"
  body := strings.NewReader(`{
    "sessionDuration": 3600,
    "directPayment": false,
    "failover": false
  }`)
  req, _ := http.NewRequest("POST", url, body)
  req.Header.Add("Authorization", "<token>")
  req.Header.Add("Content-Type", "application/json")
  res, _ := http.DefaultClient.Do(req)
  defer res.Body.Close()
  body, _ := ioutil.ReadAll(res.Body)

  fmt.Println(res)
  fmt.Println(string(body))
}
import requests

url = "https://api.mor.org/api/v1/session/modelsession?model_id=string"
body = {
  "sessionDuration": 3600,
  "directPayment": false,
  "failover": false
}
response = requests.request("POST", url, json = body, headers = {
  "Authorization": "<token>",
  "Content-Type": "application/json"
})

print(response.text)
null
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

How is this guide?