This page provides an overview of the extension_dev/api endpoint, which is designed for developers to interact with the extension development services.

Endpoint Details

  • Path: /extension_dev/api
  • Method: GET
  • Description: Retrieve information about the available APIs for extension development.

Usage Example

To get started, you can make a GET request to the endpoint:

GET /extension_dev/api

Response Format

The response will be in JSON format, containing details about the APIs.

{
  "api_details": {
    "endpoints": [
      {
        "name": "user_info",
        "description": "Retrieve user information",
        "path": "/user_info",
        "method": "GET"
      },
      {
        "name": "token_generate",
        "description": "Generate an authentication token",
        "path": "/token_generate",
        "method": "POST"
      }
    ]
  }
}

Further Reading

For more information about extension development, visit our Developer Documentation.


API Development Concept