Skip to content

Authentication

Authenticated Tailwind REST API endpoints use bearer authentication. For server-side integrations, include a Tailwind API key in the Authorization header. Public endpoints such as /health and /openapi.json do not require authentication.

  1. Log in to Tailwind
  2. Navigate to Settings > API Access
  3. Click Create API Key
  4. Copy your key and store it securely

Include your API key in the Authorization header as a Bearer token:

Terminal window
curl -X GET https://api-v1.tailwind.ai/v1/accounts \
-H "Authorization: Bearer YOUR_API_KEY"
const response = await fetch('https://api-v1.tailwind.ai/v1/accounts', {
headers: {
'Authorization': `Bearer ${process.env.TAILWIND_API_KEY}`,
'Content-Type': 'application/json'
}
});
const data = await response.json();

Tailwind API keys start with tw_pk_. OAuth access tokens issued by Tailwind are also accepted as bearer tokens; OAuth is primarily used by supported MCP clients.

import requests
import os
response = requests.get(
'https://api-v1.tailwind.ai/v1/accounts',
headers={
'Authorization': f'Bearer {os.environ["TAILWIND_API_KEY"]}',
'Content-Type': 'application/json'
}
)
data = response.json()

We recommend storing your API key in environment variables:

Terminal window
# .env (add to .gitignore!)
TAILWIND_API_KEY=your_api_key_here

If authentication fails, you’ll receive a 401 Unauthorized response:

{
"error": {
"code": "UNAUTHORIZED",
"message": "Invalid API key"
},
"meta": {
"requestId": "abc123"
}
}

Common causes:

  • Missing Authorization header
  • Incorrect API key
  • API key revoked in settings

API keys have full access to:

  • All Pinterest accounts in your organization
  • All boards and board lists
  • Creating, scheduling, and deleting posts
  • Viewing timeslots

To revoke an API key:

  1. Go to Settings > API Access
  2. Find the key you want to revoke
  3. Click Revoke

The key will be immediately invalidated and any requests using it will fail.