🔐 Insta Pass Reset API

Powerful API to send Instagram password reset links programmatically

Live Test Page →

✨ Features

⚡ Fast & Reliable

Built on Cloudflare Workers edge network for lightning-fast response times globally.

🔒 Secure

Proper masking of sensitive information in responses for privacy protection.

📧 Flexible Input

Send reset links using either Instagram username or registered email address.

📊 Detailed Responses

Comprehensive success and error responses with debugging information.

📚 API Endpoints

GET

/reset-password

Send an Instagram password reset link to a username or email.

Parameters

username - Instagram username (optional)

mail - Instagram email (optional)

Note: One of these parameters is required

Example Requests

GET /reset-password?username=teamnobi
GET /reset-password?mail=example@email.com

Success Response

{ "status": "success", "message": "Password reset email sent successfully.", "≭ Requested By": "123.45.67.89", "≭ Bot By / Dev": "@nobi_shops", "≭ Time Taken": "1.23 seconds", "≭ Password Reset Sent To": "t*****i@example.com" }

Error Response

{ "status": "failed", "message": "❌ Failed to send reset link.", "reason": "No user found with that username or email.", "≭ Time Taken": "0.45 seconds", "≭ Suggestions": [ "Verify the username or email is correct.", "Try using an email address instead of a username, or vice versa." ] }

🚀 Getting Started

Quick Integration

Here's how to use the API in your JavaScript code:

async function sendResetLink(input) { const param = input.includes('@') ? 'mail' : 'username'; const response = await fetch('https://your-worker.domain/reset-password?' + param + '=' + encodeURIComponent(input)); const data = await response.json(); console.log(data); } sendResetLink('teamnobi'); // or sendResetLink('example@email.com');