Search
curl --request GET \
--url https://api.tattooapi.com/api/v1/searchimport requests
url = "https://api.tattooapi.com/api/v1/search"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.tattooapi.com/api/v1/search', 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/search",
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/search"
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/search")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tattooapi.com/api/v1/search")
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_bodySearch
Unified search across artists, studios, and designs.
GET
/
api
/
v1
/
search
Search
curl --request GET \
--url https://api.tattooapi.com/api/v1/searchimport requests
url = "https://api.tattooapi.com/api/v1/search"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.tattooapi.com/api/v1/search', 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/search",
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/search"
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/search")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tattooapi.com/api/v1/search")
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: Authenticated internal beta. The caller must resolve to a mapped TattooAPI actor before access is granted.
https://api.tattooapi.com/api/v1/search.
Auth
The current runtime requires authentication forGET /search.
curl "$TATTOO_API_BASE_URL/search?q=traditional&type=studio&limit=5" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Query Parameters
| Parameter | Type | Notes |
|---|---|---|
q | string | Optional search text |
type | string | artist, studio, design, or all |
city, state, country | string | Location filters |
latitude, longitude, radius | number | Geographic filters |
styles, specialties | string | Comma-separated filters |
min_rating | number | Minimum rating |
verified_only | boolean | Only verified results |
page, limit | number | Pagination |
sort_by, sort_order | string | Result ordering |
include_facets | boolean | Include facet counts |
Response Shape
{
"success": true,
"data": {
"results": [
{
"type": "studio",
"id": "uuid",
"name": "Ink Masters Studio",
"description": "Premier tattoo studio",
"rating": 4.8,
"review_count": 127,
"verified": false,
"styles": [],
"specialties": [],
"location": {
"city": "Los Angeles",
"state": "CA",
"country": "United States"
},
"relevance_score": 19.9,
"provenance": {
"recordState": "normalized",
"sourceType": "directory_scrape",
"originAuthority": "system_inference",
"sourceUrl": null,
"sourceCollectedAt": null,
"licenseStatus": "rights_unknown",
"consentLevel": "recommendation_only",
"sourceNotes": []
},
"trust": {
"verificationStatus": "unverified",
"approvalStatus": "draft",
"visibility": "public",
"culturalSensitivityLevel": "none",
"trustNotes": []
}
}
],
"total": 1,
"pagination": {
"page": 1,
"limit": 20,
"total_pages": 1,
"has_next": false,
"has_prev": false
}
}
}
Search is one of the first endpoints that should become ontology-aware in practice. The current runtime shape is still tied to legacy tables, but the docs now describe that shape accurately.
Was this page helpful?
