Skip to main content

Project details

GET 

https://app.mitzu.io/api/v1/projects/:project_id

Returns the project details including the configured tables

Responses

OK

Schema
    idstring

    Unique ID of the project

    namestring

    Name of the project

    dimension_tables Dimension table details[]
  • Array [
  • idstring

    Unique ID of the dimension table

    table_schemastring

    Schema of the dimension table in the data warehouse

    table_namestring

    Name of the dimension table in the data warehouse

  • ]

Authorization: x-mitzu-api-key

name: x-mitzu-api-keytype: apiKeydescription: ## API Key

You can generate a new API key on the Account Settings -> API keys page.
in: header
import http.client

conn = http.client.HTTPSConnection("app.mitzu.io")
payload = ''
headers = {
'Accept': 'application/json',
'x-mitzu-api-key': '<x-mitzu-api-key>'
}
conn.request("GET", "/api/v1/projects/:project_id", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Base URL
https://app.mitzu.io/api/v1
Auth
ResponseClear

Click the Send API Request button above and see the response here!