List Studios
curl --request GET \
--url https://api.tattooapi.com/api/v1/studiosimport requests
url = "https://api.tattooapi.com/api/v1/studios"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.tattooapi.com/api/v1/studios', 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.tattooapi.com/api/v1/studios",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.tattooapi.com/api/v1/studios"
req, _ := http.NewRequest("GET", url, nil)
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.tattooapi.com/api/v1/studios")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tattooapi.com/api/v1/studios")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyList Studios
Public studio discovery endpoint backed by the current runtime adapter.
GET
/
api
/
v1
/
studios
List Studios
curl --request GET \
--url https://api.tattooapi.com/api/v1/studiosimport requests
url = "https://api.tattooapi.com/api/v1/studios"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.tattooapi.com/api/v1/studios', 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.tattooapi.com/api/v1/studios",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.tattooapi.com/api/v1/studios"
req, _ := http.NewRequest("GET", url, nil)
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.tattooapi.com/api/v1/studios")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tattooapi.com/api/v1/studios")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyPosture: Public no-auth read. This endpoint is part of the current promoted public surface.
Write boundary: Public writes are blocked. Do not build production flows assuming mutation is live on this route family.
https://api.tattooapi.com/api/v1/studios.
GET /studios is public and does not require authentication.
Query Parameters
| Parameter | Type | Notes |
|---|---|---|
page | integer | Default 1 |
limit | integer | Default 20, max 50 |
search | string | Name, description, or city search |
city | string | Exact city filter |
state | string | Exact state filter |
price_range | string | Comma-separated $, $$, $$$, $$$$ |
rating | number | Minimum rating |
verified | boolean | Filter by verification flag |
featured | boolean | Filter by featured flag |
latitude, longitude, radius | number | Geographic search |
sort, order | string | Sorting controls |
Response Shape
The current endpoint uses the legacy paginated wrapper while the record source is moving through the runtime adapter:{
"data": [
{
"id": "uuid",
"name": "Ink Masters Studio",
"description": "Premier tattoo studio",
"address": "123 Main Street",
"city": "Los Angeles",
"state": "CA",
"country": "USA",
"rating": 4.8,
"review_count": 127,
"specialties": [],
"verified": false,
"featured": false,
"provenance": {
"recordState": "normalized",
"sourceType": "directory_scrape",
"originAuthority": "system_inference",
"sourceUrl": null,
"sourceCollectedAt": null,
"licenseStatus": "rights_unknown",
"consentLevel": "recommendation_only",
"sourceNotes": []
},
"trust": {
"verificationStatus": "unverified",
"approvalStatus": "pending_review",
"visibility": "public",
"culturalSensitivityLevel": "none",
"trustNotes": []
}
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 1,
"totalPages": 1,
"hasNext": false,
"hasPrev": false
},
"error": null
}
This endpoint is one of the first stable ontology-backed projection candidates. The wrapper remains legacy for now, but studio records are being normalized with source lineage.
Was this page helpful?
