C++ REST SDK VS cpr

Compare C++ REST SDK vs cpr and see what are their differences.

C++ REST SDK

The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services. (by microsoft)

cpr

C++ Requests: Curl for People, a spiritual port of Python Requests. (by libcpr)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
C++ REST SDK cpr
13 22
7,800 6,137
0.8% 1.5%
3.6 8.1
4 months ago 10 days ago
C++ C++
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

C++ REST SDK

Posts with mentions or reviews of C++ REST SDK. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-06.
  • What is the industry standard today in C++ to deploy REST microservices in Kubernetes?
    5 projects | /r/cpp | 6 Sep 2023
    My favourite was Microsoft's cpprestsdk, but for some reason now is in maintenance mode, I don't know why, so it's hard to suggest it for new projects. A nice alternative is restc-cpp, that's has a good high-level interface, if this is what you want.
  • REST APIs using C++. (Is this even done much?)
    13 projects | /r/cpp | 29 Mar 2023
    CppRestSDK is deprecated.
  • C++ REST API Framework
    1 project | /r/cpp_questions | 26 Nov 2022
  • REST library: production 'ready'
    3 projects | /r/cpp_questions | 20 Jun 2022
    https://github.com/microsoft/cpprestsdk (concerned about being maintenance mode -> production?)
  • Have there been any attempts to build a REST API service on top of either Boost.asio or Boost.beast?
    2 projects | /r/cpp | 23 Apr 2022
    While it's not based on Boost Asio or Beast, Microsoft maintains a SDK for developing REST api's using C++, aptly named the C++ REST SDK. Here you can find the Github page. It pretty much covers everything you'd come to expect from a modern webserver package. It does come with a steep learning curve however.
  • Microsoft YARP
    8 projects | news.ycombinator.com | 20 Feb 2022
    I never thought I'd laud microsoft on open source software but this has certainly made my life easier... I mean come on, MIT licensed and everything...

    https://github.com/microsoft/cpprestsdk

  • Web services in C++
    1 project | /r/developersIndia | 24 Sep 2021
    Assuming you want to make a REST API check this out: https://github.com/Microsoft/cpprestsdk
    2 projects | /r/cpp | 24 Sep 2021
  • Thriving in a Crowded and Changing World: C++ 2006–2020 [pdf]
    5 projects | news.ycombinator.com | 16 Jul 2021
    >But is it truly practical to use in 'higher-abstraction' apps like web or mobile?

    Yes absolutely. Once you become familiar with the language the barrier is not that high. Familiarity trumps everything else.

    That said, since i am not a Web/mobile developer i had collected some resources to help me learn how to use C++ for Web/Mobile apps, you may find it useful;

    https://levelup.gitconnected.com/cross-platform-mobile-and-w...

    https://github.com/Microsoft/cpprestsdk

    https://medium.com/@ivan.mejia/modern-c-micro-service-implem...

  • cpprestsdk in maintenance mode
    17 projects | /r/cpp | 8 Jun 2021
    I was starting a project that needs to read data with rest API and I'd like to use cpprestsdk from Microsoft. But it's readme says that's in maintenance mode and it's not recommended for new projects... I'd like to know why it's in maintenance mode, and if it will be abandoned. Also, if there's some equivalent library for cpp, instead of creating the business logic from scratch, i.e. with boost::beast.

cpr

Posts with mentions or reviews of cpr. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-08.
  • What C++ library do you wish existed but hasn’t been created yet?
    18 projects | /r/cpp | 8 Jul 2023
    This one might fit the bill https://github.com/libcpr/cpr
  • [CMake] Can't include external header in .h file
    2 projects | /r/cpp_questions | 8 Jul 2023
    cmake_minimum_required(VERSION 3.15) project(xrpc++ DESCRIPTION "C++ AT Protocol XRPC library" VERSION 1.0.0 LANGUAGES CXX) include(FetchContent) FetchContent_Declare(cpr GIT_REPOSITORY https://github.com/libcpr/cpr.git GIT_TAG 2553fc41450301cd09a9271c8d2c3e0cf3546b73) # The commit hash for 1.10.x. Replace with the latest from: https://github.com/libcpr/cpr/releases FetchContent_MakeAvailable(cpr) FetchContent_Declare(json URL https://github.com/nlohmann/json/releases/download/v3.11.2/json.tar.xz) FetchContent_MakeAvailable(json) add_library(${PROJECT_NAME} SHARED src/lexicon.cpp src/xrpc.cpp ) target_link_libraries(${PROJECT_NAME} PRIVATE cpr::cpr) target_link_libraries(${PROJECT_NAME} PRIVATE nlohmann_json::nlohmann_json) set_target_properties(${PROJECT_NAME} PROPERTIES VERSION ${PROJECT_VERSION}) set_target_properties(${PROJECT_NAME} PROPERTIES SOVERSION 1) target_include_directories(${PROJECT_NAME} PUBLIC include) set(CMAKE_BUILD_TYPE debug)
    2 projects | /r/cpp_questions | 8 Jul 2023
    include(FetchContent) FetchContent_Declare(cpr GIT_REPOSITORY https://github.com/libcpr/cpr.git GIT_TAG 2553fc41450301cd09a9271c8d2c3e0cf3546b73) # The commit hash for 1.10.x. Replace with the latest from: https://github.com/libcpr/cpr/releases FetchContent_MakeAvailable(cpr)
  • How to convert libcurl to C++?
    2 projects | /r/cpp_questions | 16 Mar 2023
    There is also the cpr package which should offer a more c++ focussed interface for curl.
  • Trying to use libcpr, linking errors - newbie...
    1 project | /r/cpp_questions | 3 Dec 2022
    So I'm very new to C++ and I'm trying to write a C++ version of a tool that I put together in Python. I'm trying to use libcpr for all my HTTP needs. I've spent the day trying to get it set up and working, but I'm getting a bunch of linking errors when I try to run. I really don't know if I did the building of it correctly, I'm trying to use Visual Studio Community 2022 and the Usage section of their docs talks about CMake and a couple package manager methods.
  • Como são feitos os downloaders? (exemplos no texto)
    2 projects | /r/brdev | 2 Dec 2022
  • Standardise a C++ build tool and package manager?
    2 projects | /r/cpp | 27 Sep 2022
    I think vcpkg manifests have solved a really key portion of the "please give me these libraries" problem. Couple lines in a json file, pass CMake to your vcpkg toolchain script path and triplet, and you're pretty much done with dependencies. I actually used it for a project with libcpr/cpr and a couple other popular libraries, and I was shocked at how painless it was to get up and running with some web request stuff.
  • What are some cool modern libraries you enjoy using?
    32 projects | /r/cpp | 18 Sep 2022
    Libraries like nlohmann's json, cpr, fmt are prime examples of what I'm seeking. Any suggestions?
  • I'm getting a 422 Validation Failed from Github API. Only when making a request with the Cpr library.
    1 project | /r/cpp_questions | 17 Sep 2022
    Basically specifying the language and the repo, and it does work when the request is made from postman or from the browser. However, when using https://github.com/libcpr/cpr, I'm getting the following response:
  • how to make a C++ web scraper?
    2 projects | /r/cpp_questions | 10 Aug 2022

What are some alternatives?

When comparing C++ REST SDK and cpr you can also consider the following projects:

Boost.Beast - HTTP and WebSocket built on Boost.Asio in C++11

libcurl - A command line tool and library for transferring data with URL syntax, supporting DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET, TFTP, WS and WSS. libcurl offers a myriad of powerful features

cpp-httplib - A C++ header-only HTTP/HTTPS server and client library

Restbed - Corvusoft's Restbed framework brings asynchronous RESTful functionality to C++14 applications.

POCO - The POCO C++ Libraries are powerful cross-platform C++ libraries for building network- and internet-based applications that run on desktop, server, mobile, IoT, and embedded systems.

curlpp - C++ wrapper around libcURL

Simple-WebSocket-Server

drogon - Drogon: A C++14/17 based HTTP web application framework running on Linux/macOS/Unix/Windows [Moved to: https://github.com/drogonframework/drogon]

WebSocket++ - C++ websocket client/server library