Find an API

Search public APIs with auth details & Postman guides

← All APIs

Profile

haloapi · Media

Media No Auth Free & Open entertainment

API that provides Profile information about Players.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Halo 5 - Player Emblem Image

This Endpoint returns an HTTP Redirect (302 Found) response to the caller with the URL of an image of the Player's Emblem. The initial request to this API that returns the HTTP Redirect is throttled and requires a Subscription Key. However, the image itself (at hostname "image.halocdn.com") is no

https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/emblem?size=10

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/emblem?size=10"
import requests
params = {
    "size": "10"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/emblem",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/emblem');
url.searchParams.set('size', '10');

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/haloapi.com/profile/1.0/h5/profiles/{player}/emblem")
	q := baseURL.Query()
	q.Set("size", "10")
	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/haloapi.com/profile/1.0/h5/profiles/{player}/emblem")
uri.query = URI.encode_www_form({
  "size" => "10"
})

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/haloapi.com/profile/1.0/h5/profiles/{player}/emblem?" . http_build_query([
    "size" => "10"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Halo 5 - Player Spartan Image

This Endpoint returns an HTTP Redirect (302 Found) response to the caller with the URL of an image of the Player's Spartan's appearance. The initial request to this API that returns the HTTP Redirect is throttled and requires a Subscription Key. However, the image itself (at hostname "image.haloc

https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/spartan?crop=example&size=10

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/spartan?crop=example&size=10"
import requests
params = {
    "crop": "example",
    "size": "10"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/spartan",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/spartan');
url.searchParams.set('crop', 'example');
url.searchParams.set('size', '10');

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/haloapi.com/profile/1.0/h5/profiles/{player}/spartan")
	q := baseURL.Query()
	q.Set("crop", "example")
	q.Set("size", "10")
	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/haloapi.com/profile/1.0/h5/profiles/{player}/spartan")
uri.query = URI.encode_www_form({
  "crop" => "example",
  "size" => "10"
})

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/haloapi.com/profile/1.0/h5/profiles/{player}/spartan?" . http_build_query([
    "crop" => "example",
    "size" => "10"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Halo 5 - Player Appearance

This Endpoint retrieves appearance information for a player. If the player is a member of a Company, the Company's ID and Name will be provided. Additional Company information is available via the Stats API. Changelog July 14, 201

https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/appearance

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/appearance"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/appearance",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/appearance';

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

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/haloapi.com/profile/1.0/h5/profiles/{player}/appearance"
	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/haloapi.com/profile/1.0/h5/profiles/{player}/appearance")

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/haloapi.com/profile/1.0/h5/profiles/{player}/appearance";
$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 Profile?

Profile is a Media API. Developers commonly use media APIs for:

  • storing and delivering images, video, and audio
  • building digital asset management and media libraries
  • transcoding and optimising media for the web
  • adding video streaming and playback to your app
  • automating content tagging and metadata extraction

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

New to APIs? Read our beginner's guide

Open documentation ↗