{"id":21094398,"url":"https://github.com/arifurdev/emailvalidator","last_synced_at":"2025-03-14T07:09:53.235Z","repository":{"id":236993594,"uuid":"793586191","full_name":"ArifurDev/EmailValidator","owner":"ArifurDev","description":"user authentication and email validation using simple RESTful APIs. Register new users, authenticate users for login, log out users, and validate email addresses using HTTP requests.   https://youtu.be/PRxTGBuk16E?si=OXvxDsFSW6kV5YLQ","archived":false,"fork":false,"pushed_at":"2024-05-06T08:16:53.000Z","size":1016,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-21T01:41:49.488Z","etag":null,"topics":["apiproject","emailvalidation","emailvalidation-api","laravelapi","rest-api","restful-api"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ArifurDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-29T13:55:24.000Z","updated_at":"2024-05-06T08:16:56.000Z","dependencies_parsed_at":"2024-05-01T23:46:20.955Z","dependency_job_id":null,"html_url":"https://github.com/ArifurDev/EmailValidator","commit_stats":null,"previous_names":["arifurrahmanrifat29112002/emailvalidator","arifurdev/emailvalidator"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArifurDev%2FEmailValidator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArifurDev%2FEmailValidator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArifurDev%2FEmailValidator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArifurDev%2FEmailValidator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArifurDev","download_url":"https://codeload.github.com/ArifurDev/EmailValidator/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243538138,"owners_count":20307104,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apiproject","emailvalidation","emailvalidation-api","laravelapi","rest-api","restful-api"],"created_at":"2024-11-19T22:17:23.661Z","updated_at":"2025-03-14T07:09:53.215Z","avatar_url":"https://github.com/ArifurDev.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Register New User\n\n### Example Request:\n```\nPOST https://emailchecker.arifurrahmanrifat.com/api/signup?name=arif\u0026email=arifinfott@gmail.com\u0026password=123456\u0026confirm_password=123456\n```\n\n### This API register new user\n\n```\n$client = new Client();\n\n$headers = \\[\n\n'name' =\u003e 'Arif',\n\n'email' =\u003e 'arif@gmail.com',\n\n'password' =\u003e '123456',\n\n'confirm\\_password' =\u003e '123456'\n\n\\];\n\n$body = '';\n\n$request = new Request('POST', 'https://emailchecker.arifurrahmanrifat.com/api/signup?name=arif\u0026email=arifinfott@gmail.com\u0026password=123456\u0026confirm_password=123456', $headers, $body);\n\n$res = $client-\u003esendAsync($request)-\u003ewait();\n\necho $res-\u003egetBody();\n```\n\n\n## User Login Authentication\n\n### Example Request:\n```\nPOST https://emailchecker.arifurrahmanrifat.com/api/signin?email=arif@gmail.com\u0026password=123456\n```\n### This API login Authenticates the user with the provided email and password\n```\n$client = new Client();\n\n$request = new Request('POST', 'https://emailchecker.arifurrahmanrifat.com/api/signin?email=arif@gmail.com\u0026password=123456');\n\n$res = $client-\u003esendAsync($request)-\u003ewait();\n\necho $res-\u003egetBody();\n```\n\n\n## User Logout\n\n### Example Request:\n```\nGET https://emailchecker.arifurrahmanrifat.com/api/user-logout\n```\n### Logs out the currently logged-in user and removes the login token.\n```\n$client = new Client();\n\n$request = new Request('GET', 'https://emailchecker.arifurrahmanrifat.com/api/user-logout');\n\n$res = $client-\u003esendAsync($request)-\u003ewait();\n\necho $res-\u003egetBody();\n```\n\n\n## Email Address Validation\n\n### Example Request:\n```\nPOST https://emailchecker.arifurrahmanrifat.com/api/emailValidator?email=arif@gmail.com\n\n```\n### This API Validate the existenc and validity of an email address\n```\n$client = new Client();\n\n$request = new Request('POST', 'https://emailchecker.arifurrahmanrifat.com/api/emailValidator?email=arif@gmail.com');\n\n$res = $client-\u003esendAsync($request)-\u003ewait();\n\necho $res-\u003egetBody();\n```\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farifurdev%2Femailvalidator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farifurdev%2Femailvalidator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farifurdev%2Femailvalidator/lists"}