Get complete chip catalog
curl --request GET \
--url https://api.raul.ugps.io/api/v1/catalog/chips \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.raul.ugps.io/api/v1/catalog/chips"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.raul.ugps.io/api/v1/catalog/chips', 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.raul.ugps.io/api/v1/catalog/chips",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.raul.ugps.io/api/v1/catalog/chips"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.raul.ugps.io/api/v1/catalog/chips")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.raul.ugps.io/api/v1/catalog/chips")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"sim_id": 123,
"phone_number": "<string>",
"iccid": "<string>",
"status_id": {},
"status_description": {},
"endpoint_id": {},
"last_connection": {},
"operator": {},
"network_type": {}
}
],
"total_count": 123,
"timestamp": "<string>"
}{
"error": "<string>",
"message": "<string>",
"details": "<string>"
}Chip Catalog
Get complete chip catalog
Get the complete chip/SIM catalog from Emnify API.
This endpoint acts as a secure backend proxy to the Emnify API, keeping API tokens safe and providing consistent data format.
Chip Item Fields:
- sim_id: Emnify SIM ID
- phone_number (msisdn): Phone number
- iccid: SIM card ICCID
- status_id: Status ID (1=enabled, 2=disabled, etc.)
- status_description: Status description
- endpoint_id: Associated endpoint ID (if any)
- last_connection: Last connection timestamp (if available)
- operator: Network operator name (if available)
- network_type: Network type like “4G” (if available)
Notes:
- This can be a slow operation for large catalogs (1000+ SIMs)
- Results should be cached on the frontend
- Pagination with Emnify API is handled automatically
GET
/
api
/
v1
/
catalog
/
chips
Get complete chip catalog
curl --request GET \
--url https://api.raul.ugps.io/api/v1/catalog/chips \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.raul.ugps.io/api/v1/catalog/chips"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.raul.ugps.io/api/v1/catalog/chips', 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.raul.ugps.io/api/v1/catalog/chips",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.raul.ugps.io/api/v1/catalog/chips"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.raul.ugps.io/api/v1/catalog/chips")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.raul.ugps.io/api/v1/catalog/chips")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"sim_id": 123,
"phone_number": "<string>",
"iccid": "<string>",
"status_id": {},
"status_description": {},
"endpoint_id": {},
"last_connection": {},
"operator": {},
"network_type": {}
}
],
"total_count": 123,
"timestamp": "<string>"
}{
"error": "<string>",
"message": "<string>",
"details": "<string>"
}