Home > Article > Backend Development > Consuming APIs in C: a practical guide for modern developers
Today, consuming web APIs is a common practice for exchanging data between applications. Tutorials on consuming APIs in languages like JavaScript, Python, or PHP are plentiful, but C—often associated with system-level programming—is rarely considered for this purpose. However, C is perfectly capable of handling API requests, making it a viable choice for scenarios like Point of Sale (PoS) systems, IoT devices, or embedded applications, where C is already used for its efficiency and low-level control.
This article explores how to consume APIs in C, leveraging the libcurl library. By the end, you'll understand how to fetch and process data from APIs using C, and why this approach is relevant even in modern development.
While higher-level languages dominate web development, C is still a practical choice for consuming APIs in specific use cases:
To consume APIs in C, libcurl is the go-to library. It’s an open-source, portable, and feature-rich library for handling network requests over HTTP, HTTPS, FTP, and more. It supports:
Let’s walk through the process of consuming an API using C, focusing on a real-world example of fetching JSON data.
To use libcurl, you need to install it on your system. For most Linux distributions, this can be done with:
sudo apt-get install libcurl4-openssl-dev
On Windows, you can download precompiled binaries from the libcurl website: https://curl.se/download.html
On macOS if you use Homebrew you can install it via
brew install curl
A simple C program to fetch data from an API involves the following components:
Here’s an example program to fetch JSON data from a public API:
sudo apt-get install libcurl4-openssl-dev
Save the code in a file, e.g., get.c.
Compile it with the following command:
brew install curl
Run the compiled program:
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <curl/curl.h> // Struct to hold response data struct Memory { char *response; size_t size; }; // Callback function to handle the data received from the API static size_t ResponseCallback(void *contents, size_t size, size_t nmemb, void *userp) { size_t totalSize = size * nmemb; struct Memory *mem = (struct Memory *)userp; printf(". %zu %zu\n", size, nmemb); char *ptr = realloc(mem->response, mem->size + totalSize + 1); if (ptr == NULL) { printf("Not enough memory to allocate buffer.\n"); return 0; } mem->response = ptr; memcpy(&(mem->response[mem->size]), contents, totalSize); mem->size += totalSize; mem->response[mem->size] = '<pre class="brush:php;toolbar:false">gcc get.c -o get -lcurl'; return totalSize; } int main() { CURL *curl; CURLcode res; struct Memory chunk; chunk.response = malloc(1); // Initialize memory chunk.size = 0; // No data yet curl_global_init(CURL_GLOBAL_DEFAULT); curl = curl_easy_init(); if (curl) { // Set URL of the API endpoint char access_token[] = "your-access-token"; char slug[] = "home"; char version[]= "draft"; char url[256]; snprintf(url, sizeof(url), "https://api.storyblok.com/v2/cdn/stories/%s?version=%s&token=%s", slug, version, access_token); // Print the URL printf("URL: %s\n", url); // initializing libcurl // setting the URL curl_easy_setopt(curl, CURLOPT_URL, url ); // Follow redirect curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); // Set callback function to handle response data curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, ResponseCallback); // Pass the Memory struct to the callback function curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&chunk); // Perform the HTTP GET request res = curl_easy_perform(curl); // Check for errors if (res != CURLE_OK) { fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res)); } else { printf("Response data size: %zu\n", chunk.size); //printf("Response data: \n%s\n", chunk.response); } // Cleanup curl_easy_cleanup(curl); } // Free allocated memory free(chunk.response); curl_global_cleanup(); return 0; }
When working with libcurl to handle HTTP responses in C, it’s important to understand the behavior of the callback function. The callback function you define to process the response data, such as the ResponseCallback function, may be invoked multiple times for a single HTTP response. Here’s why and how this works.
The callback mechanism in libcurl is designed to handle data efficiently and flexibly. Instead of waiting for the entire response to be downloaded before processing it, libcurl processes the response in smaller chunks, calling your callback function as each chunk is received.
This behavior allows:
How Does It Work?
Each time a chunk of data is received from the server, libcurl calls your callback function. The size of each chunk depends on network conditions, buffer sizes, and libcurl’s internal logic.
The callback has to accumulate the chunks, ultimately reconstructing the full response.
Here’s an example sequence:
The ResponseCallback is the function called when data is received by libcurl.
sudo apt-get install libcurl4-openssl-dev
brew install curl
This computes the total size of the current chunk of data received by multiplying the size of one block (size) with the number of blocks (nmemb).
For example, if the server sends 8 blocks of 256 bytes each, totalSize will be 8 * 256 = 2048 bytes.
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <curl/curl.h> // Struct to hold response data struct Memory { char *response; size_t size; }; // Callback function to handle the data received from the API static size_t ResponseCallback(void *contents, size_t size, size_t nmemb, void *userp) { size_t totalSize = size * nmemb; struct Memory *mem = (struct Memory *)userp; printf(". %zu %zu\n", size, nmemb); char *ptr = realloc(mem->response, mem->size + totalSize + 1); if (ptr == NULL) { printf("Not enough memory to allocate buffer.\n"); return 0; } mem->response = ptr; memcpy(&(mem->response[mem->size]), contents, totalSize); mem->size += totalSize; mem->response[mem->size] = '<pre class="brush:php;toolbar:false">gcc get.c -o get -lcurl'; return totalSize; } int main() { CURL *curl; CURLcode res; struct Memory chunk; chunk.response = malloc(1); // Initialize memory chunk.size = 0; // No data yet curl_global_init(CURL_GLOBAL_DEFAULT); curl = curl_easy_init(); if (curl) { // Set URL of the API endpoint char access_token[] = "your-access-token"; char slug[] = "home"; char version[]= "draft"; char url[256]; snprintf(url, sizeof(url), "https://api.storyblok.com/v2/cdn/stories/%s?version=%s&token=%s", slug, version, access_token); // Print the URL printf("URL: %s\n", url); // initializing libcurl // setting the URL curl_easy_setopt(curl, CURLOPT_URL, url ); // Follow redirect curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); // Set callback function to handle response data curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, ResponseCallback); // Pass the Memory struct to the callback function curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&chunk); // Perform the HTTP GET request res = curl_easy_perform(curl); // Check for errors if (res != CURLE_OK) { fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res)); } else { printf("Response data size: %zu\n", chunk.size); //printf("Response data: \n%s\n", chunk.response); } // Cleanup curl_easy_cleanup(curl); } // Free allocated memory free(chunk.response); curl_global_cleanup(); return 0; }
The userp pointer is cast to a struct Memory *. This struct was passed earlier in the main program and is used to accumulate the received data.
The struct Memory is defined as:
./get
static size_t ResponseCallback(void *contents, size_t size, size_t nmemb, void *userp)
Resizes the response buffer to accommodate the new data chunk:
The above is the detailed content of Consuming APIs in C: a practical guide for modern developers. For more information, please follow other related articles on the PHP Chinese website!