{{ __('API Keys') }}

Manage your API keys for programmatic access

Create New Key
@if($apiKeys->count() > 0)
@foreach($apiKeys as $apiKey) @endforeach
Name Key Preview Permissions Last Used Status Actions
{{ $apiKey->name }}
@if($apiKey->description)
{{ Str::limit($apiKey->description, 50) }}
@endif
{{ $apiKey->key_prefix }}...
@foreach($apiKey->permissions as $permission) {{ $permission }} @endforeach
@if($apiKey->last_used_at) {{ $apiKey->last_used_at->diffForHumans() }}
{{ $apiKey->requests_today }} requests today
@else Never @endif
@if($apiKey->is_active) @if($apiKey->expires_at && $apiKey->expires_at->isPast()) Expired @else Active @if($apiKey->expires_at)
Expires {{ $apiKey->expires_at->diffForHumans() }}
@endif @endif @else Revoked @endif
View @if($apiKey->is_active) Edit @endif
@else

No API keys

Get started by creating a new API key.

@endif

API Documentation

Learn how to authenticate and make requests to our API.

View API Documentation →