Easily integrate data from any API directly into Google Sheets or Microsoft Excel with a simple setup process.
Extensions
and select Add-ons
and choose Get Add-ons
. This action will redirect you to the Google Workspace Marketplace.Superjoin
.Install
button to install Superjoin.
Extensions
menu tab in Google Sheets. Launch Superjoin from here. You should now see Superjoin running as a side panel on the right side of your screen.Queries
, choose to Create new query
.Sources
, select Connect to a new source
and search for Custom API
.Auth type | Description |
---|---|
No Authorization | Ideal for public APIs where no sensitive data is involved. Access is granted without requiring any credentials, simplifying the connection process. |
Basic Authorization | Utilizes a username and password to grant access. These credentials are encoded and included in the request header, providing a straightforward method to authenticate users. |
Beaer Authorization | Involves a token included in the request header that represents the user’s access permissions. This token is verified by the API server to grant access, offering a token-based approach to handle user sessions and requests. |
OAuth2.0 Authorization | Employs an authorization framework that allows third-party applications to access a user’s resources without exposing their credentials. Requires a client ID, client secret, scopes, access token URL, and refresh token URL. Users authenticate with the API provider, which then grants the application an access token. This token is used in subsequent requests to access resources on behalf of the user, ensuring secure and delegated access |
Method | Description |
---|---|
GET | Used primarily for retrieving data. This method requests data from a specified resource, and does not usually requires a body , unless specified in the API’s configuration. Most common method for fetching data. |
POST | Also used for retrieving data, but when you need to pass on some details along with the request in the form of a body . |
API_KEY
and value as 1kjvwda321wuro
.Supported types | Description |
---|---|
JSON Editor | This tool allows you to directly input or modify JSON formatted data. The editor provides a clear, structured way to view and edit JSON, ensuring that the data is both valid and precisely structured as the API expects. |
Key value pairs | For simpler or flatter data structures, adding body content as key-value pairs is straightforward and intuitive. This approach is user-friendly, especially for those who may not be as familiar with JSON syntax. |
JSON Editor
Key value pairs