Skip to content

Official Python SDK for interacting with LinksGPT URL Shortener APIs.

License

Notifications You must be signed in to change notification settings

LinksGPT/url-shortener-sdk-python

Repository files navigation

LinksGPT URL Shortener Python SDK

LinksGPT URL Shortener SDK, provides an easy way to interact with the LinksGPT API, enabling developers to build applications that leverage the power of LinksGPT's features.

LinksGPT is a professional link management platform for custom short urls, brand building and conversion optimization. It offers intelligent URL shortening and expansion, custom domains, team roles, customizable QR codes, tracking and AI-based in-depth analytics, deep linking, openAPI and enhanced link security. Powered by AI, it provides intelligent insights and recommendations based on user behavior and click patterns, support data-driven brand strategies and marketing decisions.

This Python package is automatically generated by the Swagger Codegen project:

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen

Requirements.

Python 2.7 and 3.4+

Installation & Usage

pip install

If the python package is hosted on Github, you can install directly from Github

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)

Then import the package:

import swagger_client 

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import swagger_client

Getting Started

Please follow the installation procedure and then run the following:

from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: ApiKeyAuth
configuration = swagger_client.Configuration()
configuration.api_key['apiKey'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['apiKey'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.V1DomainsApi(swagger_client.ApiClient(configuration))
workspace = 'workspace_example' # str | Your workspace id, if you do not specify the workspace context,  the default workspace (your main workspace) will be used.  If apikey is used as the authentication mode, you do not need to set this parameter. (optional)

try:
    # List your domains
    api_response = api_instance.list_domains(workspace=workspace)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling V1DomainsApi->list_domains: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://app.linksgpt.com

Class Method HTTP request Description
V1DomainsApi list_domains GET /api/v1/domains List your domains
V1LinksApi create_link POST /api/v1/links Create a new link
V1LinksApi delete_link DELETE /api/v1/links/{id} Delete a link
V1LinksApi get_link_by_id GET /api/v1/links/{id} Get a link
V1LinksApi list_links GET /api/v1/links List links
V1LinksApi list_tags GET /api/v1/links/tags List tags
V1LinksApi update_link PUT /api/v1/links/{id} Update a link
V1LinksApi update_link_tags PUT /api/v1/links/{id}/tags Update the tags
V1UsersApi get_account_details GET /api/v1/users/me Get account details

Documentation For Models

Documentation For Authorization

ApiKeyAuth

  • Type: API key
  • API key parameter name: apiKey
  • Location: HTTP header

Author

[email protected]

About

Official Python SDK for interacting with LinksGPT URL Shortener APIs.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages