{"id":471896,"date":"2026-02-25T17:59:46","date_gmt":"2026-02-25T17:59:46","guid":{"rendered":"https:\/\/distillery.com\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon\/"},"modified":"2026-02-27T21:53:28","modified_gmt":"2026-02-27T21:53:28","slug":"mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2","status":"publish","type":"post","link":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/","title":{"rendered":"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Introducci\u00f3n<\/h3>\n\n\n\n<p>Postman acelera el desarrollo y las pruebas evaluando las API a trav\u00e9s de &#8220;Colecciones&#8221;. Estas colecciones pueden configurarse para pruebas automatizadas, incluida la generaci\u00f3n autom\u00e1tica de pruebas de integraci\u00f3n. Esto garantiza que nuestro servicio permanezca intacto cuando se realicen nuevos cambios durante el desarrollo.<\/p>\n\n\n\n<p>En este ejemplo, mostraremos una forma sencilla de crear pruebas de integraci\u00f3n utilizando PostBot AI, una herramienta de Postman que utiliza ChatGPT para generar pruebas autom\u00e1ticamente. Utilizaremos FastAPI, un framework web de alto rendimiento para construir APIs con Python, para crear una API Pokemon b\u00e1sica con operaciones CRUD. A continuaci\u00f3n, realizaremos pruebas con PostBot AI para comprobar si futuros cambios podr\u00edan alterar nuestro flujo de datos.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Definici\u00f3n de puntos finales<\/h3>\n\n\n\n<p>Configuraremos rutas para gestionar las operaciones CRUD de la API Pokemon, siguiendo esta estructura:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Crea Pokemon:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>Method<\/strong>: POST\n<strong>Path<\/strong>: \/pokemons\/\n<strong>Payload<\/strong>: { \"name\": &lt;string&gt;, \"type\": &lt;string&gt;, \"abilities\": &#91; &lt;string&gt;, \u2026, &lt;string&gt; ] }\n<strong>Response<\/strong>: { \"name\": &lt;string&gt;, \"type\": &lt;string&gt;, \"abilities\": &#91; &lt;string&gt;, \u2026, &lt;string&gt; ] }\n<strong>Status Code:<\/strong> 201<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Consigue Pokemon:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>Method<\/strong>: GET\n<strong>Path<\/strong>: \/pokemons\/{name}\/\n<strong>Payload<\/strong>: None\n<strong>Response<\/strong>: { \"name\": &lt;string&gt;, \"type\": &lt;string&gt;, \"abilities\": &#91; &lt;string&gt;, \u2026, &lt;string&gt; ] }\n<strong>Status Code:<\/strong> 200<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Consigue todos los Pokemon:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>Method<\/strong>: GET\n<strong>Path<\/strong>: \/pokemons\/{name}\/\n<strong>Payload<\/strong>: None\n<strong>Response<\/strong>: { \"name\": &lt;string&gt;, \"type\": &lt;string&gt;, \"abilities\": &#91; &lt;string&gt;, \u2026, &lt;string&gt; ] }\n<strong>Status Code:<\/strong> 200<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Actualizar Pokemon:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>Method<\/strong>: PATCH\n<strong>Path<\/strong>: \/pokemons\/{name}\/\n<strong>Payload<\/strong>: { \"type\": &lt;string&gt;, \"abilities\": &#91; &lt;string&gt;, \u2026, &lt;string&gt; ] }\n<strong>Response<\/strong>: { \"name\": &lt;string&gt;, \"type\": &lt;string&gt;, \"abilities\": &#91; &lt;string&gt;, \u2026, &lt;string&gt; ] }\n<strong>Status Code:<\/strong> 200<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Borrar Pokemon:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>Method<\/strong>: DELETE\n<strong>Path<\/strong>: \/pokemons\/{name}\/\n<strong>Payload<\/strong>: None\n<strong>Response<\/strong>: None\n<strong>Status Code:<\/strong> 204<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Configuraci\u00f3n del proyecto<\/h3>\n\n\n\n<p>Comenzaremos instalando FastAPI y Uvicorn, para este ejemplo usaremos Python 3.10:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>pip install fastapi uvicorn<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Creaci\u00f3n del c\u00f3digo<\/h3>\n\n\n\n<p>Crea un archivo llamado `main.py`. En este archivo, configuraremos una instancia FastAPI y nuestra &#8220;base de datos&#8221; en memoria, representada como una lista de variables globales. Despu\u00e9s, a\u00f1adiremos nuestro endpoint inicial para crear un Pokemon.<\/p>\n\n\n\n<p>Estos ser\u00edan nuestros puntos finales GET:<\/p>\n\n\n\n<p>Ahora vamos a a\u00f1adir el punto final PATCH:<\/p>\n\n\n\n<p>Y nuestro punto final DELETE:<\/p>\n\n\n\n<p>Este es el aspecto que deber\u00eda tener nuestro c\u00f3digo completo en este punto:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">A\u00f1adir una colecci\u00f3n con Postman.<\/h3>\n\n\n\n<p>A\u00f1adiremos una nueva colecci\u00f3n haciendo clic en el bot\u00f3n &#8220;Nueva&#8221;.<\/p>\n\n\n\n<p>Y haciendo clic en el bot\u00f3n &#8220;Recogida&#8221;:<\/p>\n\n\n\n<p>Llamaremos a esta colecci\u00f3n &#8220;Pokemon&#8221;.<\/p>\n\n\n\n<p>Ahora podemos empezar a a\u00f1adir nuestras solicitudes. Este ser\u00eda el punto final de Crear Pokemon:<\/p>\n\n\n\n<p>Nuestro punto final GET para un solo Pokemon:<\/p>\n\n\n\n<p>Nuestro punto final GET para recuperar todos los Pokemon:<\/p>\n\n\n\n<p>Nuestro punto final PATCH para actualizar un Pokemon dado:<\/p>\n\n\n\n<p>Y nuestro punto final DELETE para eliminar un Pokemon existente:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">A\u00f1adir pruebas de integraci\u00f3n con PostBot AI.<\/h3>\n\n\n\n<p>Podemos auto-generar pruebas usando PostBot AI para acelerar el desarrollo. Empecemos seleccionando nuestra nueva colecci\u00f3n y haciendo clic en el bot\u00f3n &#8220;PostBot&#8221; de la parte inferior:<\/p>\n\n\n\n<p>En la ventana emergente, podemos escribir nuestras instrucciones o hacer clic en la opci\u00f3n sugerida. Hagamos clic en el bot\u00f3n &#8220;Generar pruebas&#8221;.<\/p>\n\n\n\n<p>Veremos una ventana como \u00e9sta:<\/p>\n\n\n\n<p>Haga clic en el bot\u00f3n &#8220;Generar pruebas&#8221; y empezar\u00e1 la magia:<\/p>\n\n\n\n<p>\u00a1Genial! PostBot autogener\u00f3 esas pruebas, y si hacemos clic en el bot\u00f3n &#8220;Guardar pruebas&#8221; podremos editarlas m\u00e1s tarde. Una vez guardado, si hacemos clic en la pesta\u00f1a &#8220;Pruebas&#8221;, veremos nuestras pruebas reci\u00e9n a\u00f1adidas por endpoint.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Cuestiones a tener en cuenta<\/h2>\n\n\n\n<p>Si has seguido este tutorial, puede que hayas notado un error mostrado para la petici\u00f3n DELETE:<\/p>\n\n\n\n<p>A d\u00eda de hoy, PostBot est\u00e1 todav\u00eda en Beta por lo que en algunos casos tiene comportamientos inesperados. En este caso, estamos esperando que se devuelva una respuesta de la solicitud, pero para los c\u00f3digos de estado 204 no necesitamos ninguna respuesta de vuelta, por lo que nuestra respuesta vac\u00eda es correcta pero PostBot falla al generar nuestros scripts cuando no ve una respuesta de vuelta. Arregl\u00e9moslo.<\/p>\n\n\n\n<p>Vaya a nuestra solicitud de ELIMINACI\u00d3N y haga clic en la pesta\u00f1a &#8220;Pruebas&#8221;:<\/p>\n\n\n\n<p>En el men\u00fa Snippets de la derecha, veremos una opci\u00f3n llamada &#8220;C\u00f3digo de Estado: El c\u00f3digo es 200&#8221;. Haz clic en \u00e9l:<\/p>\n\n\n\n<p>Nuestra prueba base ya est\u00e1 a\u00f1adida. Ahora s\u00f3lo tenemos que cambiar el c\u00f3digo de estado a 204:<\/p>\n\n\n\n<p>Guarde el cambio, y haga clic de nuevo en el PostBot para generar de nuevo nuestras pruebas:<\/p>\n\n\n\n<p>Esta vez veremos que nuestra prueba se ejecuta correctamente.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusi\u00f3n<\/h3>\n\n\n\n<p>La sencillez y el rendimiento de FastAPI la convierten en la opci\u00f3n ideal para crear API. En unos pocos pasos, hemos creado una API Pokemon con operaciones CRUD. La integraci\u00f3n de Postman y PostBot AI acelera el proceso de pruebas, garantizando la fiabilidad de su API. A medida que se embarca en su viaje de desarrollo de API, aproveche estas herramientas para agilizar su flujo de trabajo y crear aplicaciones s\u00f3lidas y escalables.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introducci\u00f3n Postman acelera el desarrollo y las pruebas evaluando las API a trav\u00e9s de &#8220;Colecciones&#8221;. Estas colecciones pueden configurarse para pruebas automatizadas, incluida la generaci\u00f3n autom\u00e1tica de pruebas de integraci\u00f3n. [&hellip;]<\/p>\n","protected":false},"author":8,"featured_media":251353,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":"","_wp_rev_ctl_limit":""},"categories":[403,401],"tags":[457,428,497],"class_list":["post-471896","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-codigo-cronicas","category-ingenieria-es","tag-ai-es-2","tag-cartero-es","tag-pokemon-es"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon - Distillery<\/title>\n<meta name=\"description\" content=\"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon Distillery -\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon - Distillery\" \/>\n<meta property=\"og:description\" content=\"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon Distillery -\" \/>\n<meta property=\"og:url\" content=\"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Distillery\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DistilleryTech\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-25T17:59:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-27T21:53:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/distillery.com\/wp-content\/uploads\/2024\/01\/pokemon_postman-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1707\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DistilleryTech\" \/>\n<meta name=\"twitter:site\" content=\"@DistilleryTech\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/#\\\/schema\\\/person\\\/b336e6bf835ccf8ccf9cd55c60fe5e45\"},\"headline\":\"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon\",\"datePublished\":\"2026-02-25T17:59:46+00:00\",\"dateModified\":\"2026-02-27T21:53:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\\\/\"},\"wordCount\":720,\"publisher\":{\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/distillery.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/pokemon_postman-scaled.jpg\",\"keywords\":[\"AI\",\"cartero\",\"pokemon\"],\"articleSection\":[\"C\u00f3digo Cr\u00f3nicas\",\"Ingenier\u00eda\"],\"inLanguage\":\"es-ES\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\\\/\",\"url\":\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\\\/\",\"name\":\"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon - Distillery\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/distillery.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/pokemon_postman-scaled.jpg\",\"datePublished\":\"2026-02-25T17:59:46+00:00\",\"dateModified\":\"2026-02-27T21:53:28+00:00\",\"description\":\"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon Distillery -\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\\\/#breadcrumb\"},\"inLanguage\":\"es-ES\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es-ES\",\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\\\/#primaryimage\",\"url\":\"https:\\\/\\\/distillery.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/pokemon_postman-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/distillery.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/pokemon_postman-scaled.jpg\",\"width\":2560,\"height\":1707},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/distillery.com\\\/es\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/#website\",\"url\":\"https:\\\/\\\/distillery.com\\\/es\\\/\",\"name\":\"Distillery\",\"description\":\"Distillery is an award-winning nearshore software development company. Our top-tier development talent guarantee the best results.\",\"publisher\":{\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/distillery.com\\\/es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es-ES\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/#organization\",\"name\":\"Distillery\",\"url\":\"https:\\\/\\\/distillery.com\\\/es\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es-ES\",\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/distillery.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/Layer_1-27.svg\",\"contentUrl\":\"https:\\\/\\\/distillery.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/Layer_1-27.svg\",\"width\":82,\"height\":106,\"caption\":\"Distillery\"},\"image\":{\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/DistilleryTech\",\"https:\\\/\\\/x.com\\\/DistilleryTech\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/Distillery-Tech\",\"https:\\\/\\\/www.instagram.com\\\/Distillery_Tech\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/distillery.com\\\/es\\\/#\\\/schema\\\/person\\\/b336e6bf835ccf8ccf9cd55c60fe5e45\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es-ES\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/distillery.com\\\/es\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon - Distillery","description":"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon Distillery -","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/","og_locale":"es_ES","og_type":"article","og_title":"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon - Distillery","og_description":"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon Distillery -","og_url":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/","og_site_name":"Distillery","article_publisher":"https:\/\/www.facebook.com\/DistilleryTech","article_published_time":"2026-02-25T17:59:46+00:00","article_modified_time":"2026-02-27T21:53:28+00:00","og_image":[{"width":2560,"height":1707,"url":"https:\/\/distillery.com\/wp-content\/uploads\/2024\/01\/pokemon_postman-scaled.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@DistilleryTech","twitter_site":"@DistilleryTech","twitter_misc":{"Escrito por":"admin","Tiempo de lectura":"4 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/#article","isPartOf":{"@id":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/"},"author":{"name":"admin","@id":"https:\/\/distillery.com\/es\/#\/schema\/person\/b336e6bf835ccf8ccf9cd55c60fe5e45"},"headline":"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon","datePublished":"2026-02-25T17:59:46+00:00","dateModified":"2026-02-27T21:53:28+00:00","mainEntityOfPage":{"@id":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/"},"wordCount":720,"publisher":{"@id":"https:\/\/distillery.com\/es\/#organization"},"image":{"@id":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/#primaryimage"},"thumbnailUrl":"https:\/\/distillery.com\/wp-content\/uploads\/2024\/01\/pokemon_postman-scaled.jpg","keywords":["AI","cartero","pokemon"],"articleSection":["C\u00f3digo Cr\u00f3nicas","Ingenier\u00eda"],"inLanguage":"es-ES"},{"@type":"WebPage","@id":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/","url":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/","name":"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon - Distillery","isPartOf":{"@id":"https:\/\/distillery.com\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/#primaryimage"},"image":{"@id":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/#primaryimage"},"thumbnailUrl":"https:\/\/distillery.com\/wp-content\/uploads\/2024\/01\/pokemon_postman-scaled.jpg","datePublished":"2026-02-25T17:59:46+00:00","dateModified":"2026-02-27T21:53:28+00:00","description":"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon Distillery -","breadcrumb":{"@id":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/#breadcrumb"},"inLanguage":"es-ES","potentialAction":[{"@type":"ReadAction","target":["https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/"]}]},{"@type":"ImageObject","inLanguage":"es-ES","@id":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/#primaryimage","url":"https:\/\/distillery.com\/wp-content\/uploads\/2024\/01\/pokemon_postman-scaled.jpg","contentUrl":"https:\/\/distillery.com\/wp-content\/uploads\/2024\/01\/pokemon_postman-scaled.jpg","width":2560,"height":1707},{"@type":"BreadcrumbList","@id":"https:\/\/distillery.com\/es\/blog\/mejorar-las-pruebas-de-integracion-con-postman-y-postbot-ai-crear-su-propio-pokemon-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/distillery.com\/es\/"},{"@type":"ListItem","position":2,"name":"Mejorar las pruebas de integraci\u00f3n con Postman y PostBot AI: Crear su propio Pokemon"}]},{"@type":"WebSite","@id":"https:\/\/distillery.com\/es\/#website","url":"https:\/\/distillery.com\/es\/","name":"Distillery","description":"Distillery is an award-winning nearshore software development company. Our top-tier development talent guarantee the best results.","publisher":{"@id":"https:\/\/distillery.com\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/distillery.com\/es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es-ES"},{"@type":"Organization","@id":"https:\/\/distillery.com\/es\/#organization","name":"Distillery","url":"https:\/\/distillery.com\/es\/","logo":{"@type":"ImageObject","inLanguage":"es-ES","@id":"https:\/\/distillery.com\/es\/#\/schema\/logo\/image\/","url":"https:\/\/distillery.com\/wp-content\/uploads\/2023\/06\/Layer_1-27.svg","contentUrl":"https:\/\/distillery.com\/wp-content\/uploads\/2023\/06\/Layer_1-27.svg","width":82,"height":106,"caption":"Distillery"},"image":{"@id":"https:\/\/distillery.com\/es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DistilleryTech","https:\/\/x.com\/DistilleryTech","https:\/\/www.linkedin.com\/company\/Distillery-Tech","https:\/\/www.instagram.com\/Distillery_Tech\/"]},{"@type":"Person","@id":"https:\/\/distillery.com\/es\/#\/schema\/person\/b336e6bf835ccf8ccf9cd55c60fe5e45","name":"admin","image":{"@type":"ImageObject","inLanguage":"es-ES","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/distillery.com\/es\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/distillery.com\/es\/wp-json\/wp\/v2\/posts\/471896","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/distillery.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/distillery.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/distillery.com\/es\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/distillery.com\/es\/wp-json\/wp\/v2\/comments?post=471896"}],"version-history":[{"count":1,"href":"https:\/\/distillery.com\/es\/wp-json\/wp\/v2\/posts\/471896\/revisions"}],"predecessor-version":[{"id":471921,"href":"https:\/\/distillery.com\/es\/wp-json\/wp\/v2\/posts\/471896\/revisions\/471921"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/distillery.com\/es\/wp-json\/wp\/v2\/media\/251353"}],"wp:attachment":[{"href":"https:\/\/distillery.com\/es\/wp-json\/wp\/v2\/media?parent=471896"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/distillery.com\/es\/wp-json\/wp\/v2\/categories?post=471896"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/distillery.com\/es\/wp-json\/wp\/v2\/tags?post=471896"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}