Find an API

Search public APIs with auth details & Postman guides

← All APIs

Seldon External API

seldon · AI

AI No Auth Free & Open machine_learning

Seldon External API API

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Aggregate
https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/aggregate?body=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/aggregate?body=example"
import requests
params = {
    "body": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/aggregate",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/aggregate');
url.searchParams.set('body', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/aggregate")
	q := baseURL.Query()
	q.Set("body", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/aggregate")
uri.query = URI.encode_www_form({
  "body" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/aggregate?" . http_build_query([
    "body" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET TransformInput4
https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/predict?json=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/predict?json=example"
import requests
params = {
    "json": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/predict",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/predict');
url.searchParams.set('json', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/predict")
	q := baseURL.Query()
	q.Set("json", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/predict")
uri.query = URI.encode_www_form({
  "json" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/predict?" . http_build_query([
    "json" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Route2
https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/route?json=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/route?json=example"
import requests
params = {
    "json": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/route",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/route');
url.searchParams.set('json', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/route")
	q := baseURL.Query()
	q.Set("json", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/route")
uri.query = URI.encode_www_form({
  "json" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/seldon.local/wrapper/0.1/route?" . http_build_query([
    "json" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Seldon External API?

Seldon External API is a AI API. Developers commonly use ai APIs for:

  • adding natural language processing to your product
  • generating images, text, or code with AI models
  • building chatbots and virtual assistants
  • running sentiment analysis on customer feedback
  • powering recommendation and personalisation engines

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Seldon External API is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗