Obter Loja
curl --request GET \
--url https://api.selltrust.com.br/api/v1/store \
--header 'Authorization: <authorization>'import requests
url = "https://api.selltrust.com.br/api/v1/store"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.selltrust.com.br/api/v1/store', 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.selltrust.com.br/api/v1/store",
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: <authorization>"
],
]);
$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.selltrust.com.br/api/v1/store"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
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.selltrust.com.br/api/v1/store")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.selltrust.com.br/api/v1/store")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"id": "uuid-da-loja",
"user_id": "uuid-do-proprietario",
"title": "Minha Loja",
"description": null,
"terms": null,
"cnpj": null,
"logo": null,
"favicon": null,
"sub_domain": "minhaloja",
"url": "https://minhaloja.exemplo.com",
"active_template": "never",
"template_config": null,
"created_at": "2024-01-01T00:00:00.000Z",
"updated_at": "2024-01-01T00:00:00.000Z",
"partner_id": null
}
Loja
Obter Loja
GET
/
api
/
v1
/
store
Obter Loja
curl --request GET \
--url https://api.selltrust.com.br/api/v1/store \
--header 'Authorization: <authorization>'import requests
url = "https://api.selltrust.com.br/api/v1/store"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.selltrust.com.br/api/v1/store', 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.selltrust.com.br/api/v1/store",
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: <authorization>"
],
]);
$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.selltrust.com.br/api/v1/store"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
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.selltrust.com.br/api/v1/store")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.selltrust.com.br/api/v1/store")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"id": "uuid-da-loja",
"user_id": "uuid-do-proprietario",
"title": "Minha Loja",
"description": null,
"terms": null,
"cnpj": null,
"logo": null,
"favicon": null,
"sub_domain": "minhaloja",
"url": "https://minhaloja.exemplo.com",
"active_template": "never",
"template_config": null,
"created_at": "2024-01-01T00:00:00.000Z",
"updated_at": "2024-01-01T00:00:00.000Z",
"partner_id": null
}
Retorna o registro da loja vinculada ao token de API (colunas do modelo
Store, sem relações) e o campo url, URL pública da loja resolvida via getStoreUrl (domínio próprio primário verificado ou subdomínio no ambiente atual).
string
required
Token de API no formato
Bearer stk_live_....{
"id": "uuid-da-loja",
"user_id": "uuid-do-proprietario",
"title": "Minha Loja",
"description": null,
"terms": null,
"cnpj": null,
"logo": null,
"favicon": null,
"sub_domain": "minhaloja",
"url": "https://minhaloja.exemplo.com",
"active_template": "never",
"template_config": null,
"created_at": "2024-01-01T00:00:00.000Z",
"updated_at": "2024-01-01T00:00:00.000Z",
"partner_id": null
}
⌘I
