GET
/meta/combine
Combine subscriptions and return a single plain text response.
Permission: READ_ONLY
Response
text/plain combined subscription content
GET
/meta/combine_yaml
Combine subscriptions and return YAML output.
Permission: READ_ONLY
Response
text/plain YAML content
GET
/meta/subscription/details
Fetch metadata for a subscription URL.
Permission: READ_ONLY
Query
| Name | Type | Required | Notes |
| url | string | Yes | Subscription URL. |
Response
{
"url": "https://example.com",
"domain": "example.com",
"type": "base64",
"web_page": "https://example.com",
"traffic": {
"upload": 0,
"download": 0,
"total": 0,
"remaining": 0
},
"expiry": 0,
"raw_content_preview": "..."
}
GET
/meta/subscriptions/all
List all subscription entries.
Permission: READ_ONLY
Response
[{
"domain": "example.com",
"url": "https://example.com",
"type": "yaml"
}]