Apixer is a simple React-based API testing tool that allows developers to interact with APIs by specifying a URL, HTTP method, headers, and optional request body. It supports all common HTTP methods and returns the API response in a formatted output area.
- Supports HTTP methods: GET, POST, PUT, PATCH, DELETE
- Allows custom headers (JSON format)
- Sends body data (for non-GET requests) in JSON format
- Displays response as formatted JSON or plain text
- Real-time feedback for success, warning, or error states
- React (with Hooks)
- TypeScript
- Tailwind CSS
- Clone the repository:
git clone https://github.com/your-username/apixer.git
cd apixer- Install dependencies:
Copy
Edit
npm install- Start the development server:
npm run dev
Usage:
- Enter the API URL you want to test.
- Select the HTTP method.
- Optionally, provide headers in JSON format.
- For non-GET methods, enter body data in JSON format.
- Click Test API.
- View the output below the form.