Skip to main content
POST
/
v1
/
api
/
*
Proxy Dashboard API (POST)
curl --request POST \
  --url 'https://api.mindfort.app/v1/api/*' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
import requests

url = "https://api.mindfort.app/v1/api/*"

payload = {}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};

fetch('https://api.mindfort.app/v1/api/*', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
package main

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

func main() {

url := "https://api.mindfort.app/v1/api/*"

payload := strings.NewReader("{}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
{}
{}
{
"error": "<string>",
"request_id": "<string>"
}
{
"error": "<string>",
"request_id": "<string>"
}
{
"error": "<string>",
"request_id": "<string>"
}
{
"error": "<string>",
"request_id": "<string>"
}

Authorizations

Authorization
string
header
required

API key generated from the MindFort dashboard. Pass as Authorization: Bearer <your-api-key>.

Path Parameters

path
string
required

Remainder of the dashboard API path after /v1/api

Body

application/json

The body is of type object.

Response

Upstream dashboard API response

The response is of type object.