Skip to main content
GET
/
api
/
v1
/
manage
/
meta
/
{file_uuid}
Get Silo Metadata
curl --request GET \
  --url https://api.jsonsilo.com/api/v1/manage/meta/{file_uuid} \
  --header 'X-MAN-API: <api-key>'
import requests

url = "https://api.jsonsilo.com/api/v1/manage/meta/{file_uuid}"

headers = {"X-MAN-API": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-MAN-API': '<api-key>'}};

fetch('https://api.jsonsilo.com/api/v1/manage/meta/{file_uuid}', 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.jsonsilo.com/api/v1/manage/meta/{file_uuid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-MAN-API: <api-key>"
],
]);

$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.jsonsilo.com/api/v1/manage/meta/{file_uuid}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-MAN-API", "<api-key>")

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.jsonsilo.com/api/v1/manage/meta/{file_uuid}")
.header("X-MAN-API", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.jsonsilo.com/api/v1/manage/meta/{file_uuid}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-MAN-API"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "file_name": "new db",
  "file_uuid": "f1b9b1b4-0b1b-4b1b-8b1b-2b1b1b1b1b1b",
  "created_at": "2024-12-07T12:52:28.094450+00:00",
  "updated_at": "2024-12-07T12:52:28.094450+00:00",
  "is_public": false,
  "region_name": "api"
}
{
"detail": "<string>"
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}

Authorizations

X-MAN-API
string
header
required

The JSONSilo Manage API Key

Path Parameters

file_uuid
string
required

The Silo UUID, comprising 32 hexadecimal digits separated by 4 hyphens, totaling 36 characters.

Response

Successful Response

file_name
string

Silo name. The silo name will not affect development or any sensitive aspects.

Example:

"new db"

file_uuid
string<uuid>

The Silo UUID, comprising 32 hexadecimal digits separated by 4 hyphens, totaling 36 characters.

Example:

"f1b9b1b4-0b1b-4b1b-8b1b-2b1b1b1b1b1b"

created_at
string<date-time>

The date and time the silo was created in UTC.

Example:

"2024-12-07T12:52:28.094450+00:00"

updated_at
string<date-time>

The date and time the silo was last updated in UTC.

Example:

"2024-12-07T12:52:28.094450+00:00"

is_public
boolean

Silo access mode. If true, the silo is public; if false, the silo is private.

Example:

false

region_name
string

The region where your data will be stored.

Example:

"api"