Saino
  • Getting Started
  • Security & Authentication
  • Base URL Setting
  • SDKs & Plugins
  • SMS api
    • Overview
    • Send SMS
    • Send SMS (POST API)
    • Confidential SMS
  • Voice API
    • Overview
    • Send Voice Call
    • Scheduled Voice Setting
    • Voice Language
  • EMAIL API
    • Overview
    • Send Email
    • Upload Attachment
  • Email Cleaner
    • Overview
    • Single Email
    • Bulk Email
    • Bulk Email Progress / Status
  • Account API
    • Account & Balance Info
Powered by GitBook
On this page
  • Base URL for our platform's APIs
  • Authentication Methods
  • 1. Passing API Token in Request Header (Recommended)
  • 2. Passing API Token in Query Parameter (Deprecated, will be removed in future)

Was this helpful?

Base URL Setting

PreviousSecurity & AuthenticationNextSDKs & Plugins

Last updated 4 years ago

Was this helpful?

Before you start using Platform's API, you should consider reading the API documentations thoroughly. Although, we have kept everything simple for the ease of integration of your application with our platform, but still there are some steps need to be followed to have seamless integration.

Base URL for our platform's APIs

Base URL

Description

https://api.saino.io/api/apis

Authentication Methods

You can use any ONE of the authentication methods from below.

1. Passing API Token in Request Header (Recommended)

Each request is validated by looking for valid API token into the Header of the HTTP request.

Header Name (or Header Key)

Value

Authorization

YOUR_API_TOKEN

2. Passing API Token in Query Parameter (Deprecated, will be removed in future)

Authentication

Description

Query Parameter Name : token

Every API request URL must add ?token=<YOUR_API_TOKEN> in the URL path.

This is applicable for all HTTP method calls.

IMPORTANT:

For each API request, you have to put a query parameter named token with value as <YOUR_API_TOKEN>.

Pattern: <base_url>/path?token=<YOUR_API_TOKEN>&otherParam=...

Example: To get your account information, the complete URL will be... GET Method: https://api.saino.io/api/apis/my-account?token=<API_TOKEN>

Use this as base path for all the API endpoints available on Platform.

SainoFirst
SainoFirst