M">
🇳🇿 Built for New Zealand

OIA requests made simple

Track Official Information Act requests, calculate deadlines automatically, and get AI-powered assistance to craft effective requests. Exercise your right to information with confidence.

Everything you need

Powerful tools to help you exercise your right to information under the Official Information Act 1982

📝

Easy request creation

Create OIA and LGOIMA requests with our simple forms. Access 50+ pre-configured government agencies with correct email addresses.

Automatic deadlines

Never miss the 20 working day deadline. Automatic calculation including all NZ public holidays and observance days.

🤖

AI-powered drafting

Describe what you're looking for, and AI helps craft an effective request that complies with OIA requirements.

📊

Track everything

Full timeline from submission to response, with email notifications at key milestones. Organised campaigns for related requests.

📋

Reusable templates

Save time with custom request templates. Create your own or use our pre-built options for common request types.

🌐

Public sharing

Optionally share requests and responses publicly to promote transparency and help others with similar requests.

🔑

API access

Integrate with your own systems using our API. Automate request creation and tracking for power users.

🏢

Organisation tools

Manage team requests centrally, with shared campaigns and organisation-wide analytics for enterprise users.

🔗

NationBuilder integration

Enterprise users can sync OIA activity with NationBuilder CRM for comprehensive constituent tracking.

How it works

Get started in minutes with our simple process

1

Create account

Sign up free and verify your email

2

Draft request

Write your request or use AI assistance

3

Submit & track

Send and monitor the 20-day deadline

4

Get response

Receive notification when agency responds

Ready to get started?

Join New Zealanders using MyOIA to exercise their right to information.

Create free account Compare plans
// Theme toggle functionality (function() { const toggle = document.getElementById('theme-toggle'); const html = document.documentElement; // Check for saved preference or system preference function getPreferredTheme() { const saved = localStorage.getItem('theme'); if (saved) return saved; return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'; } // Apply theme function setTheme(theme) { if (theme === 'dark') { html.setAttribute('data-theme', 'dark'); } else { html.removeAttribute('data-theme'); } localStorage.setItem('theme', theme); } // Initialize setTheme(getPreferredTheme()); // Toggle handler if (toggle) { toggle.addEventListener('click', function() { const current = html.getAttribute('data-theme'); setTheme(current === 'dark' ? 'light' : 'dark'); }); } // Listen for system preference changes window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', function(e) { if (!localStorage.getItem('theme')) { setTheme(e.matches ? 'dark' : 'light'); } }); })();