> ## Documentation Index
> Fetch the complete documentation index at: https://docs.topsort.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Utilizando activos

> Gestión de activos

export const LastUpdatedEs = ({date}) => {
  const label = "Última actualización:";
  return <>
      <style>{`
        .last-updated-component {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          padding: 10px 16px;
          border-radius: 8px;
          margin-top: 12px;
          margin-bottom: 16px;
          font-size: 14px;
          background-color: rgba(0, 0, 0, 0.05);
          border: 1px solid rgba(0, 0, 0, 0.12);
          color: rgba(0, 0, 0, 0.75);
          line-height: 1;
        }

        .last-updated-component svg {
          flex-shrink: 0;
          vertical-align: middle;
        }

        .last-updated-component span {
          display: inline-flex !important;
          align-items: center !important;
          line-height: 1 !important;
        }

        [data-theme="dark"] .last-updated-component {
          background-color: #3a3a3a;
          border: 2px solid #888888;
          color: #ffffff;
        }

        [data-theme="dark"] .last-updated-component svg {
          stroke: #ffffff;
        }
      `}</style>
      <div className="last-updated-component">
        <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
          <circle cx="12" cy="12" r="10" />
          <polyline points="12 6 12 12 16 14" />
        </svg>
        <span>
          <strong style={{
    fontWeight: 600
  }}>{label}</strong> 
          <time dateTime={date}>{date}</time>
        </span>
      </div>
    </>;
};

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  Topsort admite muchos tipos de recursos que se pueden usar en las campañas. Consulte a continuación los tipos de recursos compatibles.
</div>

## Cómo funciona

### Subiendo archivos

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  Al crear una campaña, puedes subir recursos a banners o campañas de marcas patrocinadas. Estos recursos pueden ser imágenes, vídeos, HTML o archivos alojados externamente (un url). Estos recursos se devolverán como parte de la subasta ganadora y serán aptos para su inclusión en el anuncio.
</div>

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  También puede usar nuestros [Assets api](/en/api-reference/assets-api), para crear y administrar activos sin necesidad de usarlos en campañas.
</div>

### Tipos de activos compatibles

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  Admitimos los siguientes tipos de activos:
</div>

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  * **Imágenes**: PNG, JPEG, GIF y WEBP.
  * **Vídeo**: MP4, WEBM, MOV.
  * **Protocolo externo URL** (puede ser cualquier cosa que desee utilizar de un servicio de terceros)
  * **HTML**: Código HTML que se puede usar para renderizar un diseño personalizado. Devolvemos el enlace a dicho archivo HTML, que puede incluir mediante un `<iframe> ` etiqueta.
  * **JSON**
</div>

### Tamaño del activo

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  * Admitimos imágenes de hasta 50 MB.
  * Para vídeos, admitimos hasta 200 MB.
</div>

***

<LastUpdatedEs date="2025-11-18" />
