Resources

Everything you need to build on Tattoo API.

Start with the docs for implementation detail, or explore platform guides and builder education for context on what to build and why.

Representative API call

What a request looks like

// Representative — see docs.tattooapi.com for actual endpoints
const res = await fetch('https://api.tattooapi.com/v1/artists?city=los-angeles', {
  headers: {
    'Authorization': 'Bearer <YOUR_API_KEY>',
    'Content-Type': 'application/json'
  }
});

const { data } = await res.json();
// data → [ { id, name, styles, studio, location, portfolio, ... } ]

Endpoints, schemas, and auth detail live on docs.tattooapi.com. This is illustrative of the model, not a production endpoint.

Canonical Reference

The canonical implementation reference lives on docs.tattooapi.com

Endpoints, authentication, request schemas, response shapes, SDKs, and sandbox setup are all on the docs subdomain. This site is for platform positioning and access conversations.