Get application secrets

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://openapi.logto.io/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Logto API references MCP server": {
  "url": "https://openapi.logto.io/mcp"
}
Close
GET /api/applications/{id}/secrets

Get all the secrets for the application.

Path parameters

  • id string Required

    The unique identifier of the application.

Responses

  • 200 application/json

    A list of secrets.

    Hide response attributes Show response attributes object
    • tenantId string Required

      Maximum length is 21.

    • applicationId string Required

      Minimum length is 1, maximum length is 21.

    • name string Required

      Minimum length is 1, maximum length is 256.

    • value string Required

      Minimum length is 1, maximum length is 64.

    • createdAt number Required
    • expiresAt number | null Required
  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Not Found

GET /api/applications/{id}/secrets
curl \
 --request GET 'https://[tenant_id].logto.app/api/applications/{id}/secrets' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "tenantId": "string",
    "applicationId": "string",
    "name": "string",
    "value": "string",
    "createdAt": 42.0,
    "expiresAt": 42.0
  }
]