The developers'

API Guide

Everything you need to know about building, purchasing and integrating with APIs.

Types of APIs

APIs come in various forms, each with its own strengths and purposes. Understanding these differences is essential for picking the right API for your project and ensuring your application is effective, scalable, and reliable. Let’s look at the different types of APIs, exploring what makes each unique and how they fit into modern software development.

This table provides a high-level overview of various API types, their descriptions, and examples.

API typeDescriptionExamples
Library-based APIsPart of software libraries, language-specific, range from basic utilities to complex GUI componentsJava API for Android app development, .NET libraries used in Windows applications
Operating system APIsProvide interfaces for OS interaction, manage hardware resources and processesWindows API for Windows OS interaction, POSIX API for UNIX-like systems
Database APIsEnable interaction with database management systems, facilitate data querying and manipulationSQL API for relational databases, Oracle’s OCI for Oracle databases
Hardware APIsAllow communication with hardware devices, direct control over hardware functionsIoT device APIs for smart home systems, Printer APIs for document processing
Cloud APIsProvided by cloud service platforms, enable interaction with cloud-based resources and servicesAmazon Web Services (AWS) API, Microsoft Azure API for cloud-based solutions
HTTP APIs (web API)Facilitate client-server communication over the web, use standard HTTP methods, lightweight and flexibleWeb services, mobile apps, IoT devices, social media platforms, content management systems
REST APIs (web API)Use HTTP requests for data operations, stateless and separate client-server concernsWeb services accessible via the web, social media APIs, cloud services
SOAP APIs (web API)Use service interfaces to expose business logic, high security, suitable for enterprise-level organizationsEnterprise-level services like banking, healthcare, where security and transactions are critical
GraphQL APIs (web API)Clients request only needed data, reduce data transfer over the network, support multiple responses in one requestComplex data-driven web and mobile applications, ad-hoc queries by the client
Open APIs (public APIs)Accessible by third-party developers, typically for external users, require API keysTwitter API for tweets, Stripe API for payments, providing data or services to external developers
Internal APIs (private APIs)Designed for internal use within an organization, enhance integration between systemsLinking HR systems to internal employee directories, improving internal efficiency and data security
Partner APIsAvailable to strategic business partners, require specific entitlementsIntegration of supply chain systems, service expansion to partners, creating revenue channels, controlled data sharing with trusted partners
Composite APIsCombine different data and service APIs, access multiple endpoints in one callAggregating various services in a single call for smoother user experience, commonly used in microservices architectures
JSON-RPC and XML-RPC APIsEncode data as JSON or XML for remote procedure calls, send lists of commandsRemote procedure calls with simple request/response model, suitable for basic request/response scenarios
Synchronous and asynchronousSynchronous: Request-response model, Asynchronous: Non-blocking, no immediate response requiredSynchronous: Essential data retrieval, web page loading, Asynchronous: Background tasks, real-time data streams
Library-based APIsPart of software libraries, language-specific, range from basic utilities to complex GUI componentsJava API for Android app development, .NET libraries used in Windows applications

See below for more detailed information on each API type, including their specific characteristics and use cases.

1. Library-based APIs

Library-based APIs are part of software libraries, providing pre-written code to help developers with common programming tasks, thus speeding up the development process.

Examples: The Java API is integral to Android app development; .NET libraries are used in various Windows applications.

Characteristics: Library-based APIs are language-specific and offer functionalities ranging from basic utilities to complex graphical user interface (GUI) components.

2. Operating system APIs

Operating system APIs offer interfaces for applications to interact with and perform operations on the underlying operating system.

Examples: Windows’ API allows applications to interact with Windows operating systems; POSIX API is used for UNIX-like systems.

Characteristics: These APIs manage hardware resources, file systems, and process controls, providing essential services like memory management and device control.

3. Database APIs

Database APIs enable applications to connect and interact with database management systems, simplifying data querying and manipulation.

Examples: SQL API for relational database interactions; Oracle’s OCI (Oracle Call Interface).

Characteristics: They facilitate database operations like data querying, manipulation, transaction management, and concurrency control.

4. Hardware APIs

Hardware APIs allow software applications to communicate with hardware devices, from simple peripherals to complex machinery.

Examples: IoT device APIs for smart home systems and printer APIs for document processing.

Characteristics: They provide direct control over hardware functions and are crucial in real-time data processing and device management.

5. Cloud APIs

Cloud APIs are provided by cloud service platforms, enabling applications to interact seamlessly with cloud-based resources and services.

Examples: Amazon Web Services (AWS) API; Microsoft Azure API.

Characteristics: These APIs allow access to cloud infrastructure and services, supporting scalable and distributed computing solutions.

6. Web APIs

Web APIs enable communication over the web using HTTP/HTTPS protocols, allowing web applications to interact with servers and other services. Each type of web API offers unique advantages suited to different requirements. 

For a deeper understanding, let’s look at the specifics of each:

Characteristics: They typically support XML or JSON data formats and are designed for stateless operations (especially REST), making them scalable and flexible for web-based interactions.

Additional types of APIs:

Open APIs (public APIs)

Key characteristics:

  • Accessible by any third-party developers
  • Typically designed for external users to access data or services
  • Usually come with limited access and require API keys for usage tracking

Use cases: 

  • Providing external developers with data (e.g., Twitter API for tweets), or services (e.g., Stripe API for payments).

Advantages:

  • Broad accessibility can lead to widespread adoption
  • Potentially large ecosystem of third-party applications and services

Considerations:

  • Security and rate limiting are critical to prevent abuse
  • Requires comprehensive documentation and developer support

Internal APIs (private APIs)

Key characteristics:

  • Designed for use within an organization
  • Facilitate improved integration and connectivity between internal systems
  • Enhance productivity and facilitate the creation of a unified work environment

Use cases: 

  • Interconnecting an organization’s internal systems, such as linking HR systems to internal employee directories

Advantages:

  • Can improve internal efficiency and streamline operations
  • Tighter control over API usage and data security

Considerations:

  • Internal APIs may become bottlenecks if not well-managed
  • Can create dependencies between different systems within the organization

Partner APIs

Key characteristics:

  • Available to strategic business partners
  • They are not open to the public and require specific entitlements to access
  • Enable companies to extend their services to other business partners safely

Use cases: 

  • Enabling business partners to integrate with supply chain systems or add a service to their offerings (e.g., Amazon’s Alexa voice service)

Advantages:

  • Facilitates B2B collaborations and can create new revenue channels
  • Allows for controlled sharing of data and services with trusted partner

Considerations:

  • Requires management of partner permissions and access controls
  • Often demands service level agreements (SLAs) to guarantee uptime and performance

Composite APIs

Key characteristics:

  • Combine different data and service APIs
  • Allow developers to access several endpoints in one call
  • Useful for microservices architectures where a user may need information from several services to perform a single task

Use cases: 

  • Aggregating various services in a single call for a smoother user experience is often used in microservices architectures

Advantages:

  • Reduces server load by reducing the number of calls
  • Improves speed and performance of applications

Considerations:

  • Complex error handling since multiple services are involved
  • Can become a single point of failure if not implemented with fault tolerance in mind

JSON-RPC and XML-RPC APIs

Key characteristics:

  • Remote procedure calls that encode their data as JSON or XML
  • Allow for sending a list of commands to a system which returns with the responses

Use cases: 

  • Remote procedure calls where a simple request/response model is sufficient

Advantages:

  • Simple request structure with flexibility in data types
  • Language agnostic with the ability to bypass CORS policies in web applications

Considerations:

  • Not as feature-rich as REST or SOAP
  • Potentially less secure if not properly managed

Synchronous and asynchronous API

Key characteristics:

  • Synchronous APIs:
    • Operate on a request-response model
    • The client sends a request and gets an immediate response from the server
  • Asynchronous APIs:
    • Allow for operations that do not require an immediate response
    • The client can continue processing other tasks while waiting for the response

Use cases:

  • Synchronous APIs: Ideal for scenarios where immediate data retrieval is essential, such as web page loading where the response is needed for the next operation
  • Asynchronous APIs: Suitable for background tasks, long-running operations, or when handling real-time data streams

Advantages:

  • Synchronous APIs:
    • Simplicity and ease of understanding
    • Immediate feedback and direct communication flow
  • Asynchronous APIs:
    • Non-blocking, allowing for better resource utilization
    • Suitable for complex, time-consuming operations or real-time updates

Considerations:

  • Synchronous APIs:
    • Can lead to inefficient resource use, as the client has to wait for the response
    • Not ideal for operations that require long processing times
  • Asynchronous APIs:
    • More complex to implement and manage
    • Requires handling callbacks or event loops, which can be challenging regarding error handling and tracking

Syncronous API vs Asynchronous API

Explore the differences between synchronous and asynchronous APIs and how to choose the right one.

GraphQL APIs

Key characteristics:

  • Allow clients to request only the data they need
  • Reduce the amount of data that needs to be transferred over the network
  • Clients can get multiple server responses in a single request

Use cases: 

  • Applications that require flexible, ad-hoc queries by the client (e.g., complex data-driven web and mobile applications)

Advantages:

  • Clients have the power to request exactly what they need, reducing over-fetching of data
  • Facilitates the development of faster and more dynamic applications

Considerations:

  • Can be complex to set up on the server side
  • Performance issues with large queries or deep nesting

HTTP APIs

What are HTTP (Hypertext Transfer Protocol) APIs?

An HTTP API is a type of application programming interface (API) that enables communication between a client and a server using the Hypertext Transfer Protocol (HTTP). It allows clients, such as web browsers or mobile applications, to send requests to servers on the internet and receive responses.

HTTP API example: 

curl -X GET 'https://api.nylas.com/messages?limit=10' \
     -H 'Authorization: Bearer {ACCESS_TOKEN}'

HTTP API characteristics:

  • Communication protocol: Uses the HTTP for client-server communication.
  • Standard HTTP methods: Employs methods like GET, POST, PUT, and DELETE for various operations.
  • Lightweight: Generally more lightweight and flexible than other API types, such as SOAP APIs.
  • Data interchange formats: Commonly uses formats like JSON or XML for data interchange.
  • Stateless: Operates statelessly, meaning each request from the client contains all the information needed to process it.
  • Ease of implementation: Simpler and more straightforward to implement and use, especially for web-based services.
  • Internet-based services: Ideal for internet-based applications due to their compatibility with web technologies.

HTTP API use cases

The use cases for HTTP APIs span a wide range of applications, particularly those involving web-based services, mobile apps, and the Internet of Things (IoT). 

Here are some examples:

  • Web services: HTTP APIs are extensively used to build web services, such as RESTful services, where they manage the interaction between a client (like a web browser) and a web server. They are ideal for retrieving web page content, submitting form data, and conducting server-side operations based on client requests.
  • Mobile applications: Many mobile apps rely on HTTP APIs to communicate with a server. For instance, a social media app might use an HTTP API to upload photos, fetch new posts, or send messages. These APIs are crucial for providing dynamic content and real-time interactions in mobile environments.
  • E-commerce platforms: Online shopping platforms use HTTP APIs for various functionalities, including product catalog management, order processing, payment gateway integration, and updating user profiles.
  • Real-time applications: Applications that require real-time data, such as stock trading platforms, news feeds, or sports scores, often use HTTP APIs to continuously update information.

HTTP API advantages

HTTP APIs offer several benefits that make them popular for web-based services and applications. These advantages stem from their inherent design and functionality within the HTTP framework. 

Here’s a list of their key benefits:

  • Efficient performance: They offer quick data transfer, enhancing performance, particularly in web and mobile applications.
  • High scalability: Their stateless nature allows for efficient handling of increasing loads, making them highly scalable.
  • Broad interoperability: Thanks to standard web protocols, HTTP APIs can easily integrate with many internet-based services and technologies.
  • Rapid development and testing: The simplicity of their design allows for faster development, testing, and debugging, speeding up the software development lifecycle.

HTTP API disadvantages

While HTTP APIs are advantageous in many scenarios, they also have certain drawbacks to consider when choosing an API type for specific applications. These disadvantages are related to security, state management, and more. 

Below are the main disadvantages:

  • Security concerns: Additional security measures are often required, as HTTP APIs lack the built-in security standards found in protocols like SOAP. 
  • Not ideal for complex transactions: They may not be as effective in handling complex, transactional operations requiring advanced features like transaction compliance and detailed error handling.
  • Exposure to web vulnerabilities: Being internet-based, HTTP APIs are susceptible to common web security threats, necessitating strong security measures.
  • Network dependency: Their performance depends highly on network conditions and issues like latency and bandwidth can significantly impact their efficiency.

HTTP API components

1. Client

A client is a software component or user interface that initiates communication by sending HTTP requests to a server. Its primary function is to request specific actions or information from the server, acting as the initiator of interactions within the HTTP API. Additionally, clients are responsible for managing authentication credentials ensuring secure access to the API. 

Here’s what you need to know about the client:

  • Role: The client’s role is to request information or perform actions from the server. Examples include web browsers, mobile apps, or software applications.
  • Actions: Clients use actions like “GET” (to fetch data), “POST” (to send data to the server), “PUT” (to update existing data), and “DELETE” (to remove data).
  • Customization: Clients can personalize their requests by adding extra information in the form of headers, including authentication details or preferences.
  • Handling responses: Once the server responds, clients are responsible for processing and displaying the information or taking appropriate actions based on the server’s response.

2. Server

The server is a software component that listens for incoming HTTP requests from clients, processes those requests, and sends back appropriate responses. It is the central hub for handling data, logic, and resources on the backend. The server is the backbone of an HTTP API and is responsible for receiving, processing, and responding to client requests while ensuring the security, performance, and reliability of the API’s services. 

Here’s what you should know about servers:

  • Functionality: Servers are remote computer systems responsible for handling client requests. They contain the data and logic necessary to fulfill these requests.
  • Decision-making: Servers decide how to respond to each client request, whether fetching data, storing data, or sending a response back to the client.
  • Authentication and authorization: Managing user access and ensuring clients have the necessary permissions to perform certain actions or access specific resources.
  • Error handling: In case of errors or issues, servers communicate with clients by sending specific messages, such as “404 Not Found” or “500 Internal Server Error.”
  • Security: Implementing security measures to protect against common web vulnerabilities, such as authentication mechanisms, encryption (HTTPS), and input validation.

3. HTTP methods

HTTP methods, also known as HTTP verbs, are standard actions that clients can use to interact with a server when making HTTP requests. These methods define the type of operation the client wants to perform on a specific resource hosted by the server. These commands help maintain clarity and consistency in web communications.

  • GET – an HTTP method used to retrieve data from the server. It’s like requesting information without changing the server’s data. Typically includes a URL specifying the resource to retrieve.
  • POST – an HTTP method used to send data to the server for processing or storage. It’s like submitting new information or making a request that might lead to changes on the server. It often includes a request body containing data to be processed.
  • PUT – an HTTP method used to update existing data or resources on the server. It’s like editing an item or resource that already exists. Typically provides the complete updated data for the resource.
  • DELETE – an HTTP method used to request the removal or deletion of a resource on the server. It’s like asking to remove something from the server’s records. Typically includes a URL specifying the resource to be deleted.

4. Data format

In the context of HTTP APIs, data format refers to the specific structure and encoding used to represent information exchanged between clients and servers. It defines how data is organized, formatted, and transmitted in a way that both the client and server can understand. Data Format is a standardized language or template that clients and servers agree upon to package and understand the information they exchange. 

Here’s what you need to know:

  • JSON – It’s like speaking in a simple, universal language. JSON is easy to learn and use, making it a popular choice for data exchange.
  • XML –  Think of XML as using a more structured and detailed language suitable for complex data. It’s like having a formal conversation.
  • Agreement – Clients and servers agree on one of these formats to ensure they can understand each other’s messages.

5. Stateless

Statelessness, in the context of an HTTP API, refers to the design principle where each client request to the server is treated as an independent and self-contained interaction. The server does not retain any information or context about previous requests from the same client. Statelessness is like having a conversation where each sentence you speak is self-contained, and you don’t rely on what was said before. 

Here’s what you should understand about statelessness:

  • Independence: Each client request is independent, and the server doesn’t retain information about previous requests. It treats each request as a fresh start.
  • Scalability: Stateless design simplifies the scalability of APIs because new servers can be added without complications.
  • Client responsibility: Clients must include all the necessary information in each request, as the server doesn’t keep track of previous interactions.

How to use HTTP APIs (step-by-step)

To use an HTTP API, follow these steps:

Step 1 – Identify the API 

First, you must identify the specific HTTP API you want to use. This includes knowing the API’s base URL and the available endpoints.

Step 2 – Authentication 

Obtain the necessary credentials, such as API keys or access tokens, if the API requires authentication.

Step 3 – HTTP requests: 

Decide which HTTP methods (GET, POST, PUT, DELETE, etc.) are appropriate for your intended operations. Construct HTTP requests with the required headers and parameters.

Step 4 – Send requests: 

Use a programming language or a tool (e.g., cURL or Postman) to send the HTTP requests to the API’s endpoints. Include any relevant data in the request body if needed.

Step 5 – Handle responses: 

Receive and process the responses from the API. This may involve parsing JSON or XML data returned by the server.

Step 6 – Error handling: 

Implement error handling to manage any errors or unexpected responses from the API gracefully.

Step 7 – Security: 

Ensure you follow security best practices, such as using HTTPS for secure communication and protecting sensitive data.

Best practices to build a secure HTTP API integration

To build a secure HTTP API integration, consider the following best practices:

  • Authentication and authorization: Implement strong authentication mechanisms and only grant authorized users or applications access. Use OAuth or API keys for secure access control.
  • HTTPS: Always use HTTPS to encrypt data in transit and protect against eavesdropping and tampering.
  • Input validation: Validate and sanitize user inputs to prevent common security vulnerabilities like SQL injection and cross-site scripting (XSS) attacks.
  • Rate limiting: Implement rate limiting to prevent abuse and ensure fair usage of your API resources.
  • Error handling: Provide meaningful error messages to clients without revealing sensitive information about the server’s internal structure.
  • Data encryption: If the API deals with sensitive data, consider encrypting it at rest using appropriate encryption algorithms.
  • API versioning: Use versioning in your API to ensure backward compatibility when making changes.
  • Logging and monitoring: Implement comprehensive logging and monitoring to detect and respond to security incidents promptly.
  • Third-party security: If your API relies on third-party services or libraries, regularly update them to patch known vulnerabilities.
  • Security testing: Conduct regular security assessments, such as penetration testing and vulnerability scanning, to identify and address security weaknesses.

REST APIs

What is a REST (Representational State Transfer) API?

A REST API is an application programming interface that adheres to the principles of representational state transfer, a software architectural style for distributed systems. REST APIs are used for web services, allowing for interaction with RESTful web services using standard HTTP methods. They take advantage of existing protocols and focus on the interaction between client and server in a networked environment.

Over the last two decades, REST has become an extremely popular tool for building software applications to the point where it now includes a vast, rich ecosystem of developer tools. A survey from Rapid API determined that two-thirds of developers expect to increase their usage of REST APIs in 2020, and more than 80% of developers are either using REST in production, building a proof of concept with REST, or investigating REST for a production service. REST is highly versatile and can help develop software faster, more efficiently, and scalable.

REST API examples

Node.js

Ruby

Python

Java

Curl

Response

import 'dotenv/config'
import Nylas from 'nylas'

const NylasConfig = {
  apiKey: process.env.NYLAS_API_KEY,
  apiUri: process.env.NYLAS_API_URI,
}

const nylas = new Nylas(NylasConfig)

async function fetchRecentThreads() {
  try {
    const identifier = process.env.NYLAS_GRANT_ID
    const threads = await nylas.threads.list({
      identifier,
      queryParams: {
        limit: 5,
      }
    })

    console.log('Recent Threads:', threads)
  } catch (error) {
    console.error('Error fetching threads:', error)
  }
}

fetchRecentThreads()
require 'nylas'

nylas = Nylas::Client.new(api_key: "<NYLAS_API_KEY_OR_ACCESS_TOKEN>")
query_params = { limit: 5 }
threads, _ = nylas.threads.list(identifier: "<NYLAS_GRANT_ID>", query_params: query_params)

threads.map.with_index { |thread, i|
    puts("Thread #{i}")
    participants = thread[:participants]

    participants.each{ |participant|
        puts(
            "Subject: #{thread[:subject]} | "\
            "Participant: #{participant[:name]} | "\
            "Email: #{participant[:email]}"
        )
    }
}
from dotenv import load_dotenv
load_dotenv()

import os
import sys
from nylas import Client

nylas = Client(
    os.environ.get('NYLAS_API_KEY'),
    os.environ.get('NYLAS_API_URI')
)

grant_id = os.environ.get("NYLAS_GRANT_ID")

threads = nylas.threads.list(
  grant_id,
  query_params={
    "limit": 5
  }
)

print(threads) 
import com.nylas.NylasClient;
import com.nylas.models.*;
import com.nylas.models.Thread;

public class ReadThreadParameters {
    public static void main(String[] args) 
    throws NylasSdkTimeoutError, NylasApiError {

        NylasClient nylas = new NylasClient.Builder("<NYLAS_API_KEY>").build();

        ListThreadsQueryParams queryParams = 
        new ListThreadsQueryParams.Builder().
        limit(5).
        build();

        ListResponse<Thread> threads = nylas.threads().list("<NYLAS_GRANT_ID>", 
        queryParams);

        int index = 0;
        for(Thread thread : threads.getData()){
            System.out.printf("%s ", index);
            List<EmailName> participants = thread.getParticipants();
            assert participants != null;
            for(EmailName participant : participants){
                System.out.printf("  Subject: %s | Participant: %s | Email: %s%n",
                        thread.getSubject(),
                        participant.getName(),
                        participant.getEmail());
            }
            index++;
        }
    }
}
curl --request GET \
  --url https://api.us.nylas.com/v3/grants/<GRANT_ID>/threads
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer <NYLAS_API_KEY_OR_ACCESS_TOKEN>' \
  --header 'Content-Type: application/json'
{
  "request_id": "cbd60372-df33-41d3-b203-169ad5e3AAAA",
  "data": [{
  "grant_id": "ca8f1733-6063-40cc-a2e3-ec7274abef11",
  "id": "7ml84jdmfnw20sq59f30hirhe",  // The thread's ID.
  "object": "thread",
  "has_attachments": false,
  "has_drafts": false,
  "earliest_message_date": 1634149514,
  "latest_message_received_date": 1634832749,
  "latest_message_sent_date": 1635174399,
  "participants": [
    {
      "email": "[email protected]",
      "name": "Renee Smith"
    },
    {
      "email": "[email protected]",
      "name": "Rebecca Lee Crumpler"
    }
  ],
  "snippet": "jnlnnn --Sent with Nylas",
  "starred": false,
  "subject": "Dinner Wednesday?",
  "unread": false,
  "message_ids": [  // A list of IDs for all messages in the thread.
    "njeb79kFFzli09",
    "998abue3mGH4sk"
  ],
  "draft_ids": [  // A list of IDs for all drafts in the thread.
    "a809kmmoW90Dx"
  ],
  "folders": [  // A list of folders that messages in the thread are associated with.
    "8l6c4d11y1p4dm4fxj52whyr9",
    "d9zkcr2tljpu3m4qpj7l2hbr0"
  ],
  "latest_draft_or_message": {
    "body": "Hello, I just sent a message using Nylas!",
    "date": 1635355739,
    "attachments": {
      "content": "YXR0YWNoDQoNCi0tLS0tLS0tLS0gRm9yd2FyZGVkIG1lc3NhZ2UgL=",
      "content_type": "text/calendar",
      "id": "4kj2jrcoj9ve5j9yxqz5cuv98",  // The attachment's ID.
      "size": 1708,
      "content_type": "application/ics",
      "filename": "invite.ics",
      "id": "70jcsv367jaiavt4njeu4xswg",  // The attachment's ID.
      "size": 1708
    },
    "folders": {  // A list of folders the latest message in the thread is associated with.
      "8l6c4d11y1p4dm4fxj52whyr9",
      "d9zkcr2tljpu3m4qpj7l2hbr0"
    },
    "from": {
      "name": "Renee Smith",
      "email": "[email protected]"
    },
    "grant_id": "41009df5-bf11-4c97-aa18-b285b5f2e386",
    "id": "njeb79kFFzli09",  // The message ID for the latest message in the thread.
    "object": "message",
    "reply_to": {
      "name": "Renee Smith",
      "email": "[email protected]"
    },
    "snippet": "Hello, I just sent a message using Nylas!",
    "starred": true,
    "subject": "Hello From Nylas!",
    "thread_id": "1t8tv3890q4vgmwq6pmdwm8qgsaer",  // The thread's ID.
    "to": {
      "name": "Geoff Dale",
      "email": "[email protected]"
    },
    "unread": true
  }
 }]
}   

REST API use cases

Developers regularly use REST APIs in various scenarios due to their scalability, performance, and flexibility. Some everyday use cases include:

  • Web applications: They are commonly used for creating and managing web applications, where they handle requests and responses between the client (like a web browser) and the server.
  • Mobile applications: REST APIs are essential in mobile app development, facilitating data exchange between the app and a server. They help fetch data, send user input data to the server, and more.
  • Cloud services: Many providers offer REST APIs to interact with their services, enabling users to access resources like storage, databases, and compute instances programmatically.
  • Social media integration: Platforms like Twitter and Facebook provide REST APIs for integrating social media services into other applications.
  • IoT devices: In IoT ecosystems, REST APIs enable devices to communicate with central servers or other devices, often using lightweight data formats like JSON.

REST API principles

At a high level, REST utilizes six architectural constraints that must be met for an interface to be referred to as a true REST API. They serve as the guiding principles of REST:

  • Client–server model: The client and server apps are independent of one another and can evolve separately without any inter-dependency. This makes REST APIs more flexible and scalable.
  • Uniform interface: Resources should behave consistently across the entire API, have a single identifier to represent them, and include all of the data necessary to represent it fully while excluding unnecessary data. It also should follow clear naming conventions and link and data formats. 
  • Stateless communication: The server should treat every request as new and never store anything about the most recent HTTP request. This means no session and no history.
  • Cacheable: Caching is a strategy to improve client-side performance and reduce server load. REST APIs must state whether data is cacheable or not.
  • Layered system: APIs, stored data, and authentication requests must be spread across different interfaces. This architecture helps enhance an application’s security by limiting components in each layer to interact only with the next immediate layer. 
  • Code on demand: This is an optional constraint used the least. It permits a client to download code from the API to be executed.

REST API advantages

REST APIs provide several benefits, particularly in web and network-based application development:

  • Scalability: REST APIs can manage many requests and scale effectively due to their stateless nature.
  • Flexibility and portability: The separation of client and server and a uniform interface allow for greater flexibility and portability of applications.
  • Efficient data exchange: REST APIs can use lightweight data formats like JSON, which makes data exchange efficient.
  • Ease of development and integration: Using standard HTTP methods and a stateless protocol simplifies development and integration with other services.

REST API disadvantages

Despite their advantages, REST APIs have certain limitations:

  • Statelessness constraints: For applications requiring a continuous state or session, the stateless nature of REST can be a limitation.
  • Security considerations: As with any API exposed over the internet, REST APIs require robust security mechanisms to prevent unauthorized access and data breaches.
  • Performance overheads: In some cases, the REST architecture can introduce performance overheads, especially when dealing with large amounts of resource representations.
  • Dependency on HTTP methods: REST APIs’ reliance on standard HTTP methods may limit their use in scenarios that require more complex operations beyond basic CRUD functionalities.
  • Data over-fetching and under-fetching: Without proper design, REST APIs can lead to issues like over-fetching or under-fetching of data, where either too much or too little data is returned in a response.

REST API components

REST API components are the essential elements of a RESTful web service. These components work together to facilitate client-server communication using the principles of REST. 

Here are the critical components of a REST API: 

Resources

Resources are the fundamental component of a REST API, and specific resources that match the client’s requested location should be returned. Any piece of data can be a resource, including documents, text files, images, services, collections of other resources, and more. The state of the resource at any particular time is known as resource representation, and this consists of data, metadata describing payload, and links that can help clients get additional related data.

Unless explicitly documented otherwise, REST APIs return UTF-8 encoded JSON objects as the resource. This is designed to be easy for humans and machines to create and consume.
For example, The Nylas Platform provides most data in this format; here is an example of what it looks like for a resource that represents a user contact via the Nylas Contacts API:

{
   "request_id": "1",
   "data": [
       {
           "emails": [
               {
                   "email": "[email protected]",
                   "type": "work"
               }
           ],
           "given_name": "Sam",
           "grant_id": "2",
           "groups": [
               {
                   "id": "myContacts"
               }
           ],
           "id": "1",
           "im_addresses": [],
           "object": "contact",
           "phone_numbers": [],
           "physical_addresses": [],
           "picture_url": "",
           "surname": "DevRel",
           "source": "address_book",
           "web_pages": []
       }
   ],
   "next_cursor": "123"
}

Methods

REST uses a set of standard HTTP methods, which are actions performed on resources. The most common methods are:

  • GET: Read a resource from a server. When a client performs a GET request, the server looks for the requested data and sends it back to the client if possible. This is the default request method.
  • POST: Create a new resource on a server. When a client performs a POST request, the server creates a new entry in the database and informs the client whether the creation was successful. 
  • PUT and PATCH: Update an existing resource on a server. When a client performs a PUT or PATCH request, the server updates an entry in the database and informs the client whether the update was successful.
  • DELETE: Delete a resource from a server. When a client performs a DELETE request, the server deletes an entry in the database and informs the client whether the deletion was successful.

Representations

When a client requests a resource, the server sends the resource’s current state in understandable formats – usually JSON or XML. The client then manipulates this representation of the resource’s state as needed.

Stateless interactions

Each request from the client to the server must contain all the information necessary to understand and process the request. The server does not store session information about the client; each interaction is independent.

Endpoints 

REST APIs use Uniform Resource Identifiers (URIs) to create addresses for resources. The endpoint (or route) is the URI requested; for REST APIs, this is typically a URL, much like you would use in the web browser. For example, here is the URL for an endpoint on the Open Notify API that provides information about contacts from your email account:

curl --location 'https://api.us.nylas.com/v3/grants/<GRANT_ID>/contacts’

Endpoints can also accept query parameters that modify the request to support additional functionality. Add a question mark to the end of the resource URL followed by a list of key-value pairs to include query parameters. If you want to include multiple query parameters, separate them with an ampersand. The next endpoint example accepts query parameters limiting the total contacts retrieved:

curl --location 'https://api.us.nylas.com/v3/grants/<GRANT_ID>/contacts?limit=10

Headers and response codes

HTTP headers in REST API requests and responses hold important metadata like content type, authentication tokens, and cache controls. HTTP response codes indicate the outcome of the request, such as success (200 OK), client error (404 Not Found), or server error (500 Internal Server Error).
Headers contain all the metadata associated with the request, including information about the request and response body, authorization, caching information, and related cookies. There are numerous possible headers; here are some of the more common headers you’ll encounter while working with REST APs:

  • Content type: This indicates the media type in the response body and is used to inform the client how to process it.
  • Authorization: This is included in the request and contains the credentials used to access a specific resource. Authorization methods will be covered in more detail later.
  • WWW authenticate: The server includes this in the response header when the client attempts to access a resource that requires authorization. This is often accompanied by a 401 unauthorized error, which is covered in detail later in this article.
  • Cache-control: This allows the client and server to define caching policies, which helps reduce latency and network traffic. However, the client can only set the caching policies to whatever the server supports, so this field is important for requests and responses.

Query parameters

Used in GET requests to filter and sort resources. They are part of the URI and provide additional information for the server to process the request.

Payload 

In methods like POST and PUT, the payload contains the data sent to the server to create or update a resource. A REST payload can contain virtually any media type, but the most commonly used media type is application/json.

Payload example

Here is what a resource that represents a contact in a user’s email that’s connected to the Nylas Contact API might look like:

Node.js

Ruby

Python

Java

Curl

import 'dotenv/config'
import Nylas from 'nylas'

const NylasConfig = {
 apiKey: process.env.NYLAS_API_KEY,
 apiUri: process.env.NYLAS_API_URI,
}

const nylas = new Nylas(NylasConfig)

async function createContact() {
  try {
    const contact = await nylas.contacts.create({
      identifier: process.env.GRANT_ID,
      requestBody: {
        givenName: "My",
        middleName: "Nylas",
        surname: "Friend",
        notes: "Make sure to keep in touch!",
        emails: [{type: 'work', email: '[email protected]'}],
        phoneNumbers: [{type: 'work', number: '(555) 555-5555'}],
        webPages: [{type: 'other', url: 'nylas.com'}]
      }
    })

    console.log('Contact:', JSON.stringify(contact))
  } catch (error) {
    console.error('Error to create contact:', error)
  }
}

createContact()
require 'nylas'	

nylas = Nylas::Client.new(api_key: "NYLAS_API_KEY")

request_body = {
  given_name: "My",
  middle_name: "Nylas",
  surname: "Friend",  
  emails: [{email: "[email protected]", type: "work"}],
  notes: "Make sure to keep in touch!",
  phone_numbers: [{number: "555 555-5555", type: "business"}],
  web_pages: [{url: "https://www.nylas.com", type: "homepage"}]
}

contact, _ = nylas.contacts.create(identifier: "<NYLAS_GRANT_ID>", request_body: request_body)

puts contact
from dotenv import load_dotenv
load_dotenv()

import os
import sys
from nylas import Client

nylas = Client(
    os.environ.get('NYLAS_API_KEY'),
    os.environ.get('NYLAS_API_URI')
)

grant_id = os.environ.get("GRANT_ID")

contact = nylas.contacts.create(
  grant_id,
  request_body={
    "middleName": "Nylas",
    "surname": "Friend",
    "notes": "Make sure to keep in touch!",
    "emails": [{"type": "work", "email": "[email protected]"}],
    "phoneNumbers": [{"type": "work", "number": "(555) 555-5555"}],
    "webPages": [{"type": "other", "url": "nylas.com"}]
  }
)

print(contact)
import com.nylas.NylasClient
import com.nylas.models.ContactEmail
import com.nylas.models.ContactType
import com.nylas.models.CreateContactRequest
import com.nylas.models.WebPage

fun main(args: Array<String>) {
  val nylas: NylasClient = NylasClient(apiKey = "<NYLAS_API_KEY>")
  val emails : List<ContactEmail> = listOf(ContactEmail("[email protected]", ContactType.WORK))
  val webpage : List<WebPage> = listOf(WebPage("https://www.nylas.com", ContactType.WORK))

  val contactRequest = CreateContactRequest.Builder().
      emails(emails).
      companyName("Nylas").
      givenName("Nylas' Swag").
      notes("This is good swag").
      webPages(webpage).
      build()

  val contact = nylas.contacts().create("<NYLAS_GRANT_ID>", contactRequest)

  print(contact.data)
}
curl --request POST \
  --url https://api.us.nylas.com/v3/grants/<NYLAS_GRANT_ID>/contacts \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer <NYLAS_API_KEY_OR_ACCESS_TOKEN>' \
  --header 'Content-Type: application/json' \
  --data '{
  "birthday": "1960-12-31",
  "company_name": "Nylas",
  "emails": [
    {
      "email": "[email protected]",
      "type": "work"
    },
    {
      "email": "[email protected]",
      "type": "home"
    }
  ],
  "given_name": "John",
  "groups": [
    {
      "id": "starred"
    },
    {
      "id": "all"
    }
  ],
  "im_addresses": [
    {
      "type": "jabber",
      "im_address": "myjabberaddress"
    },
    {
      "type": "msn",
      "im_address": "mymsnaddress"
    }
  ],
  "job_title": "Software Engineer",
  "manager_name": "Bill",
  "middle_name": "Jacob",
  "nickname": "JD",
  "notes": "Loves Ramen",
  "office_location": "123 Main Street",
  "phone_numbers": [
    {
      "number": "+1-555-555-5555",
      "type": "work"
    },
    {
      "number": "+1-555-555-5556",
      "type": "home"
    }
  ],
  "physical_addresses": [
    {
      "type": "work",
      "street_address": "123 Main Street",
      "postal_code": 94107,
      "state": "CA",
      "country": "USA",
      "city": "San Francisco"
    },
    {
      "type": "home",
      "street_address": "456 Main Street",
      "postal_code": 94107,
      "state": "CA",
      "country": "USA",
      "city": "San Francisco"
    }
  ],
  "suffix": "Jr.",
  "surname": "Doe",
  "web_pages": [
    {
      "type": "work",
      "url": "http://www.linkedin.com/in/johndoe"
    },
    {
      "type": "home",
      "url": "http://www.johndoe.com"
    }
  ]
}'

How to use a REST API

Using a REST API involves several steps, from understanding the API documentation to making requests and handling responses. Below is a guide on how to effectively use a REST API:

Step 1 – Understand the API documentation

Before starting, familiarize yourself with the API’s documentation. This should include the available endpoints, request methods, expected request formats, headers, authentication requirements, and possible response formats and codes.

Step 2 – Set up the environment

Ensure that you have the necessary tools and environment for making HTTP requests. This can include software like Postman, cURL, or programming libraries specific to your chosen language (like requests in Python, HttpClient in .NET, or Axios in JavaScript).

Step 3 – Authentication

Authentication is a critical component of internet security, and any REST API that lets clients access or modify sensitive or critical data must have an authentication system in place. Common methods include API keys, OAuth tokens, or Basic Auth. 

  • With basic authentication, access is typically binary, i.e., you can access all account data and functionality or none of it, and access can typically only be revoked by changing the user’s password.
  • With OAuth, access tokens often represent both an authorized account and a set of scopes that provide access only to specified data and functionality. This makes granting and revoking access to the resources a REST client needs much easier.
  • API key authentication is a simple and widely used method for authenticating and authorizing requests to a REST API. It involves using a unique identifier, an API key, to validate the client’s identity when making the request. 

Step 4 – Make a request 

Construct and send a request to the API. This involves choosing the correct HTTP method (GET, POST, PUT, DELETE, etc.), specifying the endpoint URL, and including any necessary headers, query parameters, or body data.

REST API request example

Here is a simple yet nifty API that has information about your email contacts:

Node.js

Ruby

Python

Java

Curl

Response

import 'dotenv/config'
import Nylas from 'nylas'

const NylasConfig = {
  apiKey: process.env.NYLAS_API_KEY,
  apiUri: process.env.NYLAS_API_URI,
}

const nylas = new Nylas(NylasConfig)

async function fetchContacts() {
  try {
    const identifier = process.env.GRANT_ID
    const contacts = await nylas.contacts.list({
      identifier,
      queryParams: {}, 
    })

    console.log('Recent Contacts:', contacts)
  } catch (error) {
    console.error('Error fetching drafts:', error)
  }
}

fetchContacts()
require 'nylas'	

nylas = Nylas::Client.new(api_key: "NYLAS_API_KEY")
contacts, _ = nylas.contacts.list(identifier: ENV["NYLAS_GRANT_ID"])

contacts.each {|contact|
  puts "Name: #{contact[:given_name]} #{contact[:surname]} | " \
      "Email: #{contact[:emails][0][:email]} | ID: #{contact[:id]}"
}
from dotenv import load_dotenv
load_dotenv()

import os
import sys
from nylas import Client

nylas = Client(
    os.environ.get('NYLAS_API_KEY'),
    os.environ.get('NYLAS_API_URI')
)

grant_id = os.environ.get("GRANT_ID")
contact_id = os.environ.get("CONTACT_ID")

contacts = nylas.contacts.list(
  grant_id,
)

print(contacts)
import com.nylas.NylasClient;
import com.nylas.models.*;

public class ReadAllContacts {
  public static void main(String[] args) throws NylasSdkTimeoutError, NylasApiError {
    NylasClient nylas = new NylasClient.Builder("NYLAS_API_KEY").build();
    ListResponse<Contact> contacts = nylas.contacts().list("<NYLAS_GRANT_ID>");

    for(Contact contact : contacts.getData()) {
      System.out.println(contact);
      System.out.println("\n");
    }
  }
}
curl --request GET \
  --url https://api.us.nylas.com/v3/grants/<NYLAS_GRANT_ID>/contacts \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer <NYLAS_API_KEY_OR_ACCESS_TOKEN>' \
  --header 'Content-Type: application/json
{
   "request_id": "1",
   "data": [
       {
           "emails": [
               {
                   "email": "[email protected]",
                   "type": "work"
               }
           ],
           "given_name": "Sam",
           "grant_id": "2",
           "groups": [
               {
                   "id": "myContacts"
               }
           ],
           "id": "1",
           "im_addresses": [],
           "object": "contact",
           "phone_numbers": [],
           "physical_addresses": [],
           "picture_url": "",
           "surname": "DevRel",
           "source": "address_book",
           "web_pages": []
       }
   ],
   "next_cursor": "123"
}

Step 5 – Handle the response: 

After making a request, the API will return a response. Based on the example from Step 4, the response will be something like: 

{
   "request_id": "1",
   "data": [
       {
           "emails": [
               {
                   "email": "[email protected]",
                   "type": "work"
               }
           ],
           "given_name": "Sam",
           "grant_id": "2",
           "groups": [
               {
                   "id": "myContacts"
               }
           ],
           "id": "1",
           "im_addresses": [],
           "object": "contact",
           "phone_numbers": [],
           "physical_addresses": [],
           "picture_url": "",
           "surname": "DevRel",
           "source": "address_book",
           "web_pages": []
       }
   ],
   "next_cursor": "123"
}

Step 6 – Process the data: 

If the request was successful, process the data returned. This could involve parsing JSON or XML and then using this data as required in your application.

Step 7 – Error handling:

Properly handle any errors. This includes understanding the status code and error message returned by the API and implementing appropriate error handling in your application.

  • The 200 status code indicates that the REST API successfully carried out the requested action and that no more action is necessary.
  • The 400 error code (bad request) is the generic client-side error status that can result from many problems, including malformed request syntax, invalid request message parameters, and incorrect request routing. When this error occurs, the client should modify the request before sending it to the REST API again.
  • The 401 error code (unauthorized) indicates that the client didn’t have sufficient privileges to operate on the requested resource. This is typically the result of inaccurate or nonexistent access credentials. The client should modify the request to include suitable authentication information.
  • The 403 error code (forbidden) indicates that the client’s request is formed correctly, but the REST API refuses to honor it. This is typically the result of the client not having the necessary permissions for the resource. This differs from a 401 error because the client is authenticated but cannot access the requested resource with the provided method.
  • The 404 error status code (not found) indicates that the REST API can’t map the client’s URI to a resource. In other words, the API can’t find the requested resource. No indication is given whether the condition is temporary or permanent, and subsequent client requests can be permissible because the resource might become available. This status code is commonly used when the server does not want to reveal why the request has been refused or when no other response is applicable.
  • The 405 error code (not allowed) indicates that the client tried to use an HTTP method that the resource does not allow. For instance, a read-only resource might only support GET, so requests to PUT, POST, or DELETE would return this error. If you encounter this error, modify your request to a method the resource allows.
  • The 429 error occurs when a client attempts too many requests within a certain timeframe. This error is triggered based on the REST API service provider’s rate limit settings, which is used to prevent their servers from overloading. To avoid this issue, you should make yourself aware of any rate limit issues the API might have and find ways to optimize queries to reduce the requests you need to make.
  • Most REST APIs use 500 status codes whenever the request handler raises an exception. This represents a problem with the REST API server; simply retrying the request may resolve this problem. If the problem persists, you should contact the REST API provider to further diagnose the issue.

Step 8 – Testing the API

This includes testing for different scenarios, handling unexpected responses, and ensuring your application behaves correctly if the API is unavailable or returns an error. You can quickly test how your REST API functions from the command line using cURL. cURL is a lightweight tool for making HTTP requests without a web browser. With it, you can make GET, POST, PUT, PATCH, and DELETE requests to a REST API by passing the -X option followed by the desired command.

Best practices to build a secure REST API integration

Security is integral to any development project, especially for REST APIs. Here is a checklist of best practices that will help you build a secure REST API integration:

  • Keep it simple: Keep your requests simple and efficient. Every time you make the solution unnecessarily complex, you create potential vulnerabilities.
  • Use HTTPS wherever possible: HTTPS is easy to use and offers many important security benefits. Specifically, you should never send access credentials or sensitive data over an unsecured HTTP connection.
  • Hash credentials when storing them: Passwords and OAuth credentials must always be hashed to protect them from exposure, particularly in the event of unauthorized access to your systems. If you need to store access credentials for future use, use a hashing algorithm like PBKDF2, bcrypt, and scrypt for increased security.
  • Never expose sensitive information in a URL: Usernames, passwords, session tokens, and API keys should not appear in the URL because this makes it possible to capture them in web server logs and, thus, easier for a malicious actor to exploit them.
  • Use OAuth: Basic authentication is fine for testing a REST API, but you should always use OAuth whenever available because it provides better control over access to data and functionality in a REST API.

GraphQL API

What is a GraphQL API?

A GraphQL API is an API that follows the GraphQL specification. GraphQL is a query language for APIs that revolutionizes how clients interact with servers by allowing them to request only the needed data, offering flexibility and efficiency in data retrieval. This flexibility significantly shifts from traditional API approaches like REST, where the server defines the data returned in response to specific endpoints.

Where did GraphQL originate?

In 2012, Facebook faced a problem: they wanted to improve the functionality of their news feed, but they were pushing the limits of their mobile app’s ability to download frequent, small updates. REST was not a viable solution because the structure of their internal data models didn’t follow REST conventions. They also required high bandwidth efficiency since they were dealing with mobile devices that don’t always have a reliable internet connection. Enter GraphQL, which they eventually released as open source in 2015.

GraphQL solves two major problems. First, it enables API consumers to structure their requests in a way that mirrors the response, both in the hierarchy and in the returned data. This makes it easier to return only the data you need, unlike REST, which returns all available data, thus taking up precious bandwidth. Second, REST requires API providers to build functions for each specific query and filter they want to support. GraphQL, on the other hand, supports queries and filters for all data fields by default. 

GraphQL APIs key characteristics

GraphQL APIs are defined by several key characteristics that set them apart from traditional RESTful APIs. These characteristics include:

  • Data precision: Clients can request only the specific data they need, eliminating over-fetching and reducing the amount of unnecessary data transferred over the network.
  • Reduced data transfer: GraphQL minimizes the amount of data transferred between the client and server by allowing clients to request only the fields they require. This optimized data transfer improves overall performance.
  • Batching: GraphQL enables clients to receive multiple server responses in a single request. This feature reduces the number of round-trips between the client and server, further enhancing performance and efficiency.

GraphQL APIs use cases

Based on the use case of Facebook, you might have already guessed that GraphQL is best for use cases where something needs to make frequent updates that include only a specified set of data. This makes it great for mobile applications since bandwidth is precious and unreliable. Any unused data from a REST response is wasted bandwidth, and GraphQL helps you avoid this.

Quite a few companies jumped to GraphQL, evidenced by all of the companies that joined the GraphQL Foundation. GitHub is one notable company that released v4 of their API with GraphQL; they give the following reasoning:

“GitHub chose GraphQL for our API v4 because it offers significantly more flexibility for our integrators. The ability to define precisely the data you want — and only the data you want — is a powerful advantage over the REST API v3 endpoints. GraphQL lets you replace multiple REST requests with a single call to fetch the data you specify.”

Shopify released a GraphQL API in 2018 to make it easier to build and manage online storefronts, they like it because it helps reduce requests that are made to their API servers:

“GraphQL gave us big wins by reducing the number of round trips made to the server and giving us a well-defined and strongly typed schema to work against. GraphQL has also played a major role in helping us find and fix bugs before impacting our merchant’s daily operations.”

Yelp released its first GraphQL API in 2017 and liked it for how easy it is to access relational data:

“GraphQL also makes traversing graphs (and therefore relational data) very easy. Unlike most REST APIs, you don’t need to make multiple requests to pull relational data. Based on the schema, you can retrieve data based on the relations they have. For our API users, this means easy access to all the great business information we have available.”

GraphQL APIs advantages

APIs using GraphQL offer several advantages that make them a compelling choice for modern application development:

Reduce bandwidth requirements

Let’s take a look at an example that demonstrates this difference. Say we want to build an app that keeps track of our best friend’s birthday, and we want to access data that represents the date of their birthday and their favorite food, which we’ll use to buy them a gift.

The typical REST request would look like this:

curl -X GET 'https://api.nylas.com/messages/{message_id}'

The REST response would look something like this:

{
  "id": "8f642b0g8cdbf07b",
  "subject": "Meeting Schedule",
  "from": [{"name": "Alice Johnson", "email": "[email protected]"}],
  "to": [{"name": "Bob Brown", "email": "[email protected]"}],
  "date": 1609459200,
  "body": "...",
  "attachments": [...]
}


For a Nylas-specific context, we can adapt the example to fit into the realm of email, calendar, or contacts, which are core Nylas products. Let’s consider a scenario where you’re developing an application that needs to retrieve an email’s subject and sender but not the entire email content or attachments, which could be substantial. This is a situation where GraphQL shows its strength by allowing you to request just the data you need.

REST API Example with Nylas

For a RESTful API call, you might request details of an email like so:

bashCopy code

curl -X GET 'https://api.nylas.com/messages/{message_id}' \ -H 'Authorization: Bearer {ACCESS_TOKEN}'

This request could return a lot of information about the email, much of which might not be relevant to your immediate needs:

jsonCopy code

{ "id": "8f642b0g8cdbf07b", "subject": "Meeting Schedule", "from": [{"name": "Alice Johnson", "email": "[email protected]"}], "to": [{"name": "Bob Brown", "email": "[email protected]"}], "date": 1609459200, "body": "...", "attachments": [...] }

In this example, you get the entire email object, including the body and attachments, which might be unnecessary for your application.

GraphQL API Example with Nylas

With GraphQL, you could make a more focused request:

query {
  email(id: "8f642b0g8cdbf07b") {
    subject
    from {
      name
      email
    }
  }
}

And the response would contain only the requested fields:

{
  "data": {
    "email": {
      "subject": "Meeting Schedule",
      "from": [{"name": "Alice Johnson", "email": "[email protected]"}]
    }
  }
}

This GraphQL request specifies exactly what information you want to retrieve (subject and from), leading to a smaller, more efficient response. This results in significant bandwidth savings, particularly for objects with tens or even hundreds of data points. Even more so when you multiply that across millions or billions of API requests.

Manage complex data structures

GraphQL is also good for situations where you need to implement user interfaces that include complex data structures. Imagine you’re developing an application that not only retrieves specific details about a calendar event (like a meeting) but also wants to gather extra information related to the event, such as participant details and their contact information. This situation demonstrates GraphQL’s strength in handling complex data structures through nested queries, allowing for a more efficient data retrieval process compared to traditional RESTful APIs.

REST API Example with Nylas

With a RESTful approach, you might first retrieve the calendar event and then make additional requests for each participant to get their contact information. This could look something like:

curl -X GET 'https://api.nylas.com/events/{event_id}' \
     -H 'Authorization: Bearer {ACCESS_TOKEN}'

Response:

{
  "id": "event_12345",
  "title": "Team Meeting",
  "participants": [
    {"email": "[email protected]"},
    {"email": "[email protected]"}
  ]
}

You’d then need separate requests for each participant to get more details:

# Requests to get contact details for each participant
curl -X GET 'https://api.nylas.com/[email protected]' \
     -H 'Authorization: Bearer {ACCESS_TOKEN}'

curl -X GET 'https://api.nylas.com/[email protected]' \
     -H 'Authorization: Bearer {ACCESS_TOKEN}'

This approach requires multiple network requests, increasing complexity and potential latency.

GraphQL API Example with Nylas

A GraphQL implementation might allow you to make a single, nested query to retrieve the event along with detailed information about each participant in one go:

query {
  event(id: "event_12345") {
    title
    participants {
      email
      contact {
        name
        phone
        organization
      }
    }
  }
}

And the response could look like this, assuming a hypothetical GraphQL service over Nylas data:

{
  "data": {
    "event": {
      "title": "Team Meeting",
      "participants": [
        {
          "email": "[email protected]",
          "contact": {
            "name": "Alice Johnson",
            "phone": "555-0100",
            "organization": "ExampleCorp"
          }
        },
        {
          "email": "[email protected]",
          "contact": {
            "name": "Bob Brown",
            "phone": "555-0200",
            "organization": "AnotherExampleCorp"
          }
        }
      ]
    }
  }
}

This single GraphQL query efficiently replaces multiple REST calls, simplifying the client-side logic and potentially reducing the bandwidth and time needed to gather the same information.

It’s important to note that while this example illustrates the advantage of using GraphQL for managing complex data structures and relationships, Nylas primarily provides RESTful APIs. The GraphQL example is hypothetical and would require additional infrastructure to translate GraphQL queries into Nylas API calls or the existence of a GraphQL layer built on top of Nylas services.

GraphQL APIs disadvantages

As we’ve seen with SOAP and REST, there are always trade-offs with any API interface. In certain situations, these may become big enough downsides to seek an alternative. 

Caching is more complex

REST APIs benefit from caching provided as part of normal HTTP server functionality. In other words, you can generally rely on modern HTTP servers and clients to properly cache GET requests made to a REST API. GraphQL uses a single URL for all requests, which often causes caching not to perform as expected. 

Fortunately, there are open source tools that help you resolve this. On the server side is DataLoader, a NodeJS utility that can be used for batching and caching. On the client side, you can use Apollo Client, a JavaScript library that includes caching for requesting GraphQL APIs. Either way, you need to make sure that you’ve fully evaluated whether your app requires caching and ensure you plan accordingly.

Queries require optimization

GraphQL relies heavily on relationships between data objects, and as with any other queries on relational databases, it’s possible to write inefficient GraphQL queries. As your requests dive further into a data graph, the number of API requests you make can rise very quickly. If you’re producing a GraphQL API, you need to make sure you properly use batching where possible to group actions that access the database. You can also implement depth limits that prevent requests from going too far into a data graph. As an API consumer, it’s important to consider the complexity of the data requests you make and determine if there are ways to optimize them.

Creates potential to expose a data model

One powerful feature of GraphQL is introspection, which lets you ask a GraphQL schema what queries it supports. This makes developing GraphQL APIs much easier but can also open you up to exposing your internal data models if this feature is enabled in your production servers. Fortunately, there are ways to restrict what schema is available to users or disable the feature entirely. You must ensure your API isn’t exposing sensitive data with GraphQL’s introspection function.

GraphQL APIs components

GraphQL APIs have several key components that work together to enable efficient data retrieval and manipulation.

Schema

The schema is the fundamental contract between clients and servers in a GraphQL API. It defines the types, queries, mutations, and relationships available in the API, acting as a blueprint for how data can be requested and manipulated.

  • It specifies the types of objects that can be queried or mutated, including their fields and relationships.
  • Types in the schema can be scalar (e.g., Int, String, Boolean) or custom-defined (e.g., User, Product), and they can have fields that represent the data attributes.
  • The schema is typically defined using the GraphQL Schema Definition Language (SDL), making it human-readable and easy to understand.
  • It acts as a roadmap for clients, guiding them on what data they can request and how to interact with the API.

Queries 

Queries are how clients request data from a GraphQL API and allow clients to specify the exact data they need.

  • Queries are one of the fundamental operations in GraphQL and are used by clients to request data from the server.
  • Clients define their queries based on the schema, specifying the fields they want to retrieve, any arguments for filtering or sorting, and the structure of the response.
  • GraphQL queries can be as simple or as complex as needed, allowing clients to request nested data structures with precision.
  • Query execution begins at the “root” query type defined in the schema, and the server resolves each requested field by invoking the corresponding resolver function.

Mutations

Mutations are used to modify data by providing clients with a way to create, update, or delete records while ensuring data integrity and consistency.

  • While queries are used for fetching data, mutations are employed for modifying data on the server.
  • Mutations allow clients to create, update, or delete records.
  • Similar to queries, mutations are also defined in the schema, specifying input types for the data to be modified and the expected output.
  • Mutations are executed sequentially, ensuring data integrity and consistency on the server.
  • Like queries, mutations also have resolver functions that define how the data changes should be processed.

Resolvers

Resolvers power a GraphQL API. They are responsible for fetching and processing data for each field in a query or mutation, determining how data is retrieved and transformed.

  • Resolvers are the heart of a GraphQL API, which determines how data is fetched and returned for each field in a query or mutation.
  • Each field in the schema has an associated resolver function specifying how to retrieve that field’s data.
  • Resolvers can interact with databases, external APIs, or any data source to fetch the requested information.
  • They can also perform data transformations or computations before returning the data to the client.
  • Resolvers are organized according to the schema’s structure and execute hierarchically, ensuring that data dependencies are resolved correctly.

How to use GraphQL APIs

Following the steps below, you can effectively use GraphQL API in your applications, ensuring efficient data retrieval, security, and adaptability as your project evolves.

Step 1 – Installing a GraphQL client

Install a GraphQL client library or tool that matches your programming language or platform. Common GraphQL clients include Apollo Client, Relay, and GraphQL Request.

npm install @apollo/client

Step 2 – Initializing the client

Initialize the GraphQL client by providing the API endpoint or URL where the GraphQL server is hosted.

import { ApolloClient, InMemoryCache } from '@apollo/client';

const client = new ApolloClient({
  uri: 'https://example.com/graphql', // Replace with your API endpoint
  cache: new InMemoryCache(),
});

Step 3 – Writing a query:

Create a GraphQL query that specifies the data you want to retrieve. Use the query language to structure your request.

import { gql } from '@apollo/client';

const GET_USER_PROFILE = gql`
  query GetUserProfile($userId: ID!) {
    user(id: $userId) {
      id
      username
      email
    }
  }
`;

Step 4 – Sending the query:

Use the GraphQL client to send the query to the API endpoint. Include the query as a string in the request.

import { useQuery } from '@apollo/client';

const { loading, error, data } = useQuery(GET_USER_PROFILE, {
  variables: { userId: '123' }, // Pass query variables
});

Step 5 – Receiving and processing the response

Receive the JSON response from the API. The response will contain the data requested in the query.

if (loading) return <p>Loading...</p>;
if (error) return <p>Error: {error.message}</p>;

Step 6 – Error handling

Implement error handling to handle any issues that may arise, such as network errors or GraphQL-specific errors returned in the response.

Step 7 – Displaying data

Once you have received the data, display it in your application’s user interface according to your design and user experience requirements.

<div>
  <p>Username: {data.user.username}</p>
  <p>Email: {data.user.email}</p>
</div>

Step 8 – Caching and optimizations

Implement caching mechanisms to store frequently requested data on the client side, reducing redundant requests. Optimize queries and mutations for performance by avoiding over-fetching or deep nesting.

Step 9 – Testing and validation

Test your queries and mutations to ensure they return the expected results. Use GraphQL developer tools like GraphiQL or GraphQL Playground for interactive testing and exploration.

Best practices to build a GraphQL API integration

To ensure a successful integration of GraphQL APIs, consider the following best practices:

  • Understand the schema: Familiarize yourself with the API’s schema, which defines the types, queries, mutations, and relationships available. Explore the documentation to gain insights into what data is accessible and how to structure your queries and mutations.
  • Plan your queries and mutations: Clearly define your data requirements and the operations you need to perform. Use the flexibility of GraphQL to create precise queries tailored to your application’s needs. Consider pagination, filtering, and sorting options when retrieving data.
  • Security considerations: Authenticate and authorize users appropriately, following best practices for securing GraphQL APIs. Employ rate limiting and query complexity analysis to prevent abuse.
  • Versioning and deprecation: Stay aware of API versioning to ensure backward compatibility as the API evolves. Pay attention to deprecated fields or types and update your queries accordingly.
  • Monitoring and performance optimization: Monitor your GraphQL API’s performance, tracking query execution times and resource usage. Optimize resolvers and data fetching to address any performance bottlenecks.
  • Documentation and collaboration: Keep API documentation up to date for your team and other developers who may interact with the API. Collaborate with backend teams to understand schema changes and upcoming features.

GraphQL APIs offer a flexible and efficient way to interact with data in modern applications. By understanding their key characteristics, use cases, advantages, and potential challenges, developers can harness the full potential of GraphQL to build dynamic and responsive applications. Following best practices ensures a smooth integration experience and optimal performance.

SOAP API

What is a SOAP (Simple Object Access Protocol) API?

Simple object access protocol (SOAP) is a messaging protocol that facilitates seamless communication between programs, regardless of their operating systems and technologies, by defining structured rules for messages, often using XML. A SOAP API is a web service interface that uses the SOAP protocol for communication. 

SOAP was introduced to the world in 1998, and is an extremely verbose protocol that requires the use of highly-structured XML for all requests. It gained prominence in enterprise settings for secure and standardized data exchange. Despite the rise of alternatives like REST APIs, often seen as simpler and more flexible, SOAP APIs remain relevant in specific use cases. They are particularly valued in environments requiring strict standards adherence and where transactional integrity is paramount. 

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
                   xmlns:nylas="http://www.nylas.com/emails">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <nylas:GetEmailRequest>
         <nylas:EmailId>12345</nylas:EmailId>
      </nylas:GetEmailRequest>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

SOAP API characteristics

SOAP APIs are distinguished by several key features that make them effective across a range of applications: 

  • Structured communication: SOAP APIs utilize a structured XML format for communication, which is beneficial for any system requiring precise and controlled data exchange.
  • Formal interface definition: Using web services description language (WSDL), SOAP APIs offer clear and formal definitions of their interfaces. 
  • Flexibility in operations: SOAP can support stateful and stateless operations, making it adaptable to various scenarios, including complex business processes, where maintaining a continuous client-server interaction is necessary.
  • Transport protocol independence: SOAP APIs are not limited to HTTP and can operate over multiple transport protocols, which adds to their flexibility in different network and messaging environments. This makes them suitable for various applications, from simple data exchange to complex enterprise-level integrations.

Security standards: The inclusion of robust security standards like WS-Security makes SOAP APIs suitable for use cases that demand high levels of data security, including applications outside the typical web service domain.

SOAP API use cases

SOAP APIs have specific features that are beneficial in certain situations, particularly where there is a need for standardized, structured communication with enhanced security and transactional integrity. However, it’s important to note that these industries often choose between SOAP and REST APIs based on their specific needs and preferences. 

Here are some use cases that highlight the strengths of SOAP APIs:

  • Financial services: In the financial industry, SOAP APIs are one of the options for managing secure transactions, account management, and facilitating data exchange between banks, payment processors, and financial institutions. They are valued for their structured message formats and security standards. 
  • Healthcare systems: SOAP APIs are used in healthcare for secure data transfer, including patient data, medical records, and insurance claims. 
  • Government and public sector: Government agencies may use SOAP APIs for services involving citizen data, tax filings, social benefits, and other areas where data accuracy and security are important. 
  • Telecommunications: Telecom companies utilize SOAP APIs for managing network resources, provisioning services, and ensuring communication reliability.
  • E-commerce: SOAP APIs are used in e-commerce for secure payment processing, order management, and inventory synchronization. 

SOAP API advantages

SOAP’s primary advantages are rooted in its strict adherence to standards and capability for comprehensive error handling and transaction management. This makes it particularly suitable for high data integrity scenarios, such as those requiring atomicity, consistency, isolation, durability (ACID) compliance. These features ensure reliable and precise communications, ideal in environments where the predictability of message formats and transactional reliability are crucial.

However, the rigor and structure of SOAP come with increased complexity, as it requires a detailed understanding of the data structure for API interactions. Additionally, this complexity often results in higher bandwidth usage than REST APIs, which may render SOAP less suitable in situations where bandwidth is limited or needs to be conserved.

SOAP API disadvantages

In evaluating SOAP APIs, it’s essential to consider some of their disadvantages, which can impact their suitability for certain applications:

  • Increased payload size: Due to the XML-based structure of SOAP messages, they often have larger payloads than other types like JSON used in REST APIs. This increased size can lead to higher bandwidth usage, which might be a significant concern in environments with bandwidth limitations or costs.
  • Complexity in development and maintenance: The intricacy of SOAP’s standards and the requirement for a detailed understanding of its structure can make SOAP APIs more complex. This complexity can result in longer development times and potentially higher costs, particularly when compared to the more streamlined and flexible development process of REST APIs.
  • Performance considerations: The verbosity of SOAP may impact performance, particularly in scenarios where rapid data exchange is necessary. The larger message sizes can lead to slower processing and transmission times, which might be a critical factor in time-sensitive applications.

SOAP API components

SOAP API components work together to structure and convey information within SOAP messages. The envelope provides the outer container, the header allows for additional context or customization, the body carries the core data, and the fault mechanism ensures proper error handling and reporting. This structured approach to message composition enhances the reliability and interoperability of SOAP-based communication.

Envelope

The envelope is the fundamental structure of a SOAP message that encapsulates all other SOAP components.

  • The SOAP message begins with an envelope, which serves as the outermost element.
  • It defines the start and end of the SOAP message and encapsulates all other components.
  • The envelope typically contains one mandatory element called the “Body” and an optional “header.”
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" 
…..
</soap:Envelope>

Header

The header is a versatile component within SOAP messages and plays a crucial role in enhancing the capabilities of SOAP communication.

  • The header is an optional part of the SOAP message and resides within the envelope.
  • It can contain additional information related to the message, such as authentication credentials, routing instructions, or custom application-specific data.
  • Headers provide a way to extend the basic functionality of SOAP messages to accommodate various requirements.
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:wsa="http://www.w3.org/2005/08/addressing">
   <soap:Header>
      <wsa:MessageID>uuid:12345678-1234-1234-1234-123456789012</wsa:MessageID>
      <wsa:Action>http://example.com/SomeAction</wsa:Action>
      <wsa:To>http://example.com/ServiceEndpoint</wsa:To>
   </soap:Header>
…..
</soap:Envelope>

Body

The body is a vital and mandatory component of a SOAP API message, serving as the container for the primary data being transmitted.

  • The body is a mandatory part of the SOAP message and resides within the envelope alongside the header. 
  • It contains the actual data being sent in the SOAP message, which could be a request for an operation or a response containing the result of an operation.
  • The body’s content is typically defined by the specific SOAP operation being performed.
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
   <soap:Header>
      <!-- SOAP Header elements, if present, can go here -->
   </soap:Header>
   <soap:Body>
      <ns1:Request xmlns:ns1="http://example.com/namespace">
         <ns1:OperationName>
            <!-- Request-specific data and parameters go here -->
         </ns1:OperationName>
      </ns1:Request>
   </soap:Body>
</soap:Envelope>

Fault

The fault element is a crucial part of SOAP messages, and it’s instrumental in ensuring that errors are properly communicated and can be addressed as needed.

  • The fault element provides information about errors that occur during message processing.
  • When an error occurs, a SOAP fault message is generated, containing details about the error, including a fault code, fault reason, and optional fault details.
  • Fault messages enable graceful error handling and reporting between SOAP client and server.
<soap:Fault>
         <soap:Code>
            <soap:Value>soap:Sender</soap:Value>
            <soap:Subcode>
               <soap:Value>custom:InvalidInput</soap:Value>
            </soap:Subcode>
         </soap:Code>
         <soap:Reason>
            <soap:Text>Invalid input provided.</soap:Text>
         </soap:Reason>
         <soap:Detail>
            <!-- Additional details about the fault can go here -->
         </soap:Detail>
    </soap:Fault>

How to use a SOAP API

To use a SOAP API effectively, follow these steps:

Step 1 – Define the SOAP message structure

Begin by specifying the structure of your SOAP message, including the envelope, header, and body.

Step 2 – Choose a programming language or framework: 

Select a programming language or framework that supports SOAP, ensuring compatibility with your development environment.

Step 3 – Implement the SOAP client and server

Develop the SOAP client and server components based on your chosen technology stack, adhering to the SOAP message structure.

Step 4 – Exchange SOAP messages 

Communicate between the client and server by exchanging SOAP messages, typically over HTTP or other transport protocols.

Step 5 – Handle SOAP faults and errors

Implement error handling mechanisms to gracefully manage SOAP faults and errors that may occur during processing.

Best practices to build a SOAP API integration

To ensure a successful SOAP API integration, consider these best practices:

  • Ensure proper error handling and fault reporting: Implement robust error handling mechanisms and provide informative fault reporting to aid troubleshooting.
  • Implement strong security measures: Utilize SSL/TLS for transport security and WS-Security for message-level security to protect data integrity and confidentiality.
  • Optimize message size: Minimize SOAP message size by employing efficient data serialization formats, especially for attachments and large payloads.
  • Consider versioning and backward compatibility: Plan for versioning to accommodate changes while maintaining backward compatibility to avoid breaking existing integrations.
  • Document thoroughly: Create comprehensive documentation for your SOAP API, including message formats, available operations, and endpoint details to assist developers and integrators.

This SOAP API guide covers everything from understanding SOAP to its practical application and best practices for building robust integrations. SOAP’s security and transaction support strengths make it a reliable choice for particular enterprise-level services. Still, careful consideration of its disadvantages and adherence to best practices are essential for success.