Developers

Developers

API tokens to manage your QR codes programmatically.

@if($newToken)

Your new token — copy it now

This is the only time it will be shown.

{{ $newToken }}
@endif

Create a token

@csrf
@error('name')

{{ $message }}

@enderror

Your tokens

@forelse($tokens as $token)

{{ $token->name }}

Created {{ $token->created_at->diffForHumans() }} · {{ $token->last_used_at ? 'last used '.$token->last_used_at->diffForHumans() : 'never used' }}

@csrf @method('DELETE')
@empty

No tokens yet.

@endforelse

Quick start

Authenticate with a Bearer token. Base URL:

{{ $apiBase }}
curl {{ $apiBase }}/me \
  -H "Authorization: Bearer <your-token>" \
  -H "Accept: application/json"

Endpoints: GET /me. QR code management endpoints coming soon.