Skip to main content

ExternalLinkListResponse

Response containing a list of external links

links object[]required

List of external links

  • Array [
  • createdAtstring<date-time>required

    When the link was created

    Example: 2024-01-01T00:00:00Z
    externalIdstring | nullnullable

    ID on the external source (if available)

    Example: 12345
    idstring<uuid>required

    External link ID

    Example: 550e8400-e29b-41d4-a716-446655440060
    seriesIdstring<uuid>required

    Series ID

    Example: 550e8400-e29b-41d4-a716-446655440002
    sourceNamestringrequired

    Source name (e.g., "myanimelist", "anilist", "mangadex")

    Example: myanimelist
    updatedAtstring<date-time>required

    When the link was last updated

    Example: 2024-01-15T10:30:00Z
    urlstringrequired

    URL to the external source

    Example: https://myanimelist.net/manga/12345
  • ]
  • ExternalLinkListResponse
    {
    "links": [
    {
    "createdAt": "2024-01-01T00:00:00Z",
    "externalId": "12345",
    "id": "550e8400-e29b-41d4-a716-446655440060",
    "seriesId": "550e8400-e29b-41d4-a716-446655440002",
    "sourceName": "myanimelist",
    "updatedAt": "2024-01-15T10:30:00Z",
    "url": "https://myanimelist.net/manga/12345"
    }
    ]
    }