Download OpenAPI specification:
REST API for the Subtitles application
Register a new user.
| email required | string <email> |
| password required | string >= 8 characters |
{- "email": "user@example.com",
- "password": "password123"
}{- "error": {
- "code": "string",
- "message": "string",
- "details": { }
}
}Get a new token.
| email required | string <email> |
| password required | string >= 8 characters |
{- "email": "user@example.com",
- "password": "password123"
}{- "access": "string",
- "refresh": "string",
- "email": "user@example.com"
}Returns a list of history sets.
| limit | integer Default: 10 Number of items to return |
| offset | integer Default: 0 Offset for pagination |
{- "count": 0,
- "next": "string",
- "previous": "string",
- "results": [
- {
- "id": "string",
- "title": "string",
- "created_at": "string",
- "updated_at": "string"
}
]
}Update a history set.
| title required | string |
{- "title": "string"
}{- "error": {
- "code": "string",
- "message": "string",
- "details": { }
}
}Returns a list of history.
| limit | integer Default: 10 Number of items to return |
| offset | integer Default: 0 Offset for pagination |
{- "count": 0,
- "next": "string",
- "previous": "string",
- "results": [
- {
- "id": "string",
- "content": "string",
- "created_at": "string",
- "updated_at": "string"
}
]
}Optional extended description in CommonMark or HTML.
| content | string |
{- "content": "string"
}{- "error": {
- "code": "string",
- "message": "string",
- "details": { }
}
}