List Apps
curl --request GET \
--url https://api.mixpeek.com/v1/apps \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.mixpeek.com/v1/apps"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.mixpeek.com/v1/apps', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mixpeek.com/v1/apps",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.mixpeek.com/v1/apps"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.mixpeek.com/v1/apps")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mixpeek.com/v1/apps")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"results": [
{
"app_id": "<string>",
"slug": "<string>",
"url": "<string>",
"meta": {
"title": "<string>",
"description": "Search across 10k+ product images",
"logo_url": "https://cdn.example.com/logo.png",
"favicon_url": "https://cdn.example.com/favicon.ico",
"indexable": false
},
"is_active": true,
"version": 123,
"template": "<string>",
"custom_domains": [
{
"domain": "<string>",
"status": "pending",
"verification_token": "<string>",
"cname_target": "<string>",
"tls_cert_id": "<string>",
"tls_expires_at": "2023-11-07T05:31:56Z",
"verified_at": "2023-11-07T05:31:56Z",
"is_primary": false
}
],
"has_unpublished_changes": false,
"auth_config": {
"mode": "public",
"clerk_org_id": "<string>",
"clerk_allowed_providers": [
"<string>"
],
"password_hash": "<string>",
"saml_idp_metadata_url": "<string>",
"saml_sp_entity_id": "<string>",
"saml_acs_url": "<string>",
"oidc_issuer": "<string>",
"oidc_client_id": "<string>",
"oidc_client_secret_name": "<string>",
"oidc_scopes": [
"<string>"
],
"jwt_jwks_url": "<string>",
"jwt_audience": "<string>",
"jwt_issuer": "<string>",
"api_keys": [
{}
]
},
"build_config": {
"entry": "src/layout.jsx",
"framework": "react",
"tailwind": true,
"env_vars": {},
"secrets": {},
"asset_prefix": "<string>"
},
"monitoring_config": {
"enabled": true,
"error_boundary_enabled": true,
"sentry_enabled": true,
"posthog_enabled": true,
"custom_error_message": "<string>",
"auto_fix_enabled": true
},
"repo_url": "<string>",
"repo_branch": "<string>",
"environments": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"total_count": 123,
"limit": 123,
"offset": 123,
"max_apps": 123
}{
"status": 123,
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": {}
},
"success": false
}{
"status": 123,
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": {}
},
"success": false
}{
"status": 123,
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": {}
},
"success": false
}{
"status": 123,
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": {}
},
"success": false
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"status": 123,
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": {}
},
"success": false
}Apps
List Apps
List all Apps for this organization.
The response includes max_apps (the tier’s Canvas App limit, null =
unlimited) so the UI can render usage (“X of N apps used”) and gate the
create action without a second round-trip.
GET
/
v1
/
apps
List Apps
curl --request GET \
--url https://api.mixpeek.com/v1/apps \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.mixpeek.com/v1/apps"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.mixpeek.com/v1/apps', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mixpeek.com/v1/apps",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.mixpeek.com/v1/apps"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.mixpeek.com/v1/apps")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mixpeek.com/v1/apps")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"results": [
{
"app_id": "<string>",
"slug": "<string>",
"url": "<string>",
"meta": {
"title": "<string>",
"description": "Search across 10k+ product images",
"logo_url": "https://cdn.example.com/logo.png",
"favicon_url": "https://cdn.example.com/favicon.ico",
"indexable": false
},
"is_active": true,
"version": 123,
"template": "<string>",
"custom_domains": [
{
"domain": "<string>",
"status": "pending",
"verification_token": "<string>",
"cname_target": "<string>",
"tls_cert_id": "<string>",
"tls_expires_at": "2023-11-07T05:31:56Z",
"verified_at": "2023-11-07T05:31:56Z",
"is_primary": false
}
],
"has_unpublished_changes": false,
"auth_config": {
"mode": "public",
"clerk_org_id": "<string>",
"clerk_allowed_providers": [
"<string>"
],
"password_hash": "<string>",
"saml_idp_metadata_url": "<string>",
"saml_sp_entity_id": "<string>",
"saml_acs_url": "<string>",
"oidc_issuer": "<string>",
"oidc_client_id": "<string>",
"oidc_client_secret_name": "<string>",
"oidc_scopes": [
"<string>"
],
"jwt_jwks_url": "<string>",
"jwt_audience": "<string>",
"jwt_issuer": "<string>",
"api_keys": [
{}
]
},
"build_config": {
"entry": "src/layout.jsx",
"framework": "react",
"tailwind": true,
"env_vars": {},
"secrets": {},
"asset_prefix": "<string>"
},
"monitoring_config": {
"enabled": true,
"error_boundary_enabled": true,
"sentry_enabled": true,
"posthog_enabled": true,
"custom_error_message": "<string>",
"auto_fix_enabled": true
},
"repo_url": "<string>",
"repo_branch": "<string>",
"environments": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"total_count": 123,
"limit": 123,
"offset": 123,
"max_apps": 123
}{
"status": 123,
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": {}
},
"success": false
}{
"status": 123,
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": {}
},
"success": false
}{
"status": 123,
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": {}
},
"success": false
}{
"status": 123,
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": {}
},
"success": false
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}{
"status": 123,
"error": {
"message": "<string>",
"type": "<string>",
"code": "<string>",
"details": {}
},
"success": false
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Required range:
1 <= x <= 1000Required range:
x >= 0Filter by template type
Exact match on app slug
Case-insensitive partial match on app name
Response
Paginated list of Apps for this organization
Was this page helpful?
⌘I

