Obtener merchant
curl --request GET \
--url https://api.venepagos.com.ve/api/v1/merchants/{id}import requests
url = "https://api.venepagos.com.ve/api/v1/merchants/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.venepagos.com.ve/api/v1/merchants/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.venepagos.com.ve/api/v1/merchants/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.venepagos.com.ve/api/v1/merchants/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.venepagos.com.ve/api/v1/merchants/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.venepagos.com.ve/api/v1/merchants/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "mrc_abc123",
"name": "Mi Tienda",
"rif": "J-12345678-9",
"description": "Tienda de ejemplo",
"owner": {
"id": "usr_xyz789",
"email": "owner@example.com",
"name": "Juan Pérez"
},
"status": "ACTIVE",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-03-20T14:00:00.000Z"
}
Merchants
Obtener merchant
Obtiene los detalles completos de un merchant específico.
GET
/
api
/
v1
/
merchants
/
{id}
Obtener merchant
curl --request GET \
--url https://api.venepagos.com.ve/api/v1/merchants/{id}import requests
url = "https://api.venepagos.com.ve/api/v1/merchants/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.venepagos.com.ve/api/v1/merchants/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.venepagos.com.ve/api/v1/merchants/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.venepagos.com.ve/api/v1/merchants/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.venepagos.com.ve/api/v1/merchants/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.venepagos.com.ve/api/v1/merchants/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "mrc_abc123",
"name": "Mi Tienda",
"rif": "J-12345678-9",
"description": "Tienda de ejemplo",
"owner": {
"id": "usr_xyz789",
"email": "owner@example.com",
"name": "Juan Pérez"
},
"status": "ACTIVE",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-03-20T14:00:00.000Z"
}
Autenticación
Este endpoint requiere autenticación mediante Bearer token.Parámetros de ruta
string
required
Identificador único del merchant.
Respuesta
string
Identificador único del merchant.
string
Nombre del merchant.
string
RIF del merchant.
string
Descripción del merchant.
object
string
Estado del merchant (
ACTIVE o INACTIVE).string
Fecha de creación en formato ISO 8601.
string
Fecha de última actualización en formato ISO 8601.
{
"id": "mrc_abc123",
"name": "Mi Tienda",
"rif": "J-12345678-9",
"description": "Tienda de ejemplo",
"owner": {
"id": "usr_xyz789",
"email": "owner@example.com",
"name": "Juan Pérez"
},
"status": "ACTIVE",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-03-20T14:00:00.000Z"
}
⌘I