HTTP::API::Core

A small, dependency-light foundation for building JSON HTTP API clients in Perl.

use HTTP::API::Core;

my $api = HTTP::API::Core->new(
    base_url => 'https://api.example.com',
);

my $response = $api->get('/users');
my $data = $response->json;

The module provides reusable API-client infrastructure:

It deliberately does not replace HTTP transports such as HTTP::Tiny, LWP, Mojo::UserAgent, or Furl.