Find an API

Search public APIs with auth details & Postman guides

← All APIs

API Endpoints

readme · Developer Tools

Developer Tools No Auth Free & Open developer_tools

Create beautiful product and API documentation with our developer friendly platform.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get metadata about the current project

Returns project data for API key

https://api.apis.guru/v2/specs/readme.io/2.0.0

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/readme.io/2.0.0/"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/readme.io/2.0.0/",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/readme.io/2.0.0/';

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/readme.io/2.0.0/"
	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/readme.io/2.0.0/")

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/readme.io/2.0.0/";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET getAPISpecification

Get API specification metadata

https://api.apis.guru/v2/specs/readme.io/2.0.0/api-specification?page=1&perPage=10

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
x-readme-version example
curl -X GET "https://api.apis.guru/v2/specs/readme.io/2.0.0/api-specification?page=1&perPage=10" \
  -H "x-readme-version: example"
import requests
params = {
    "page": "1",
    "perPage": "10"
}
headers = {
    "x-readme-version": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/readme.io/2.0.0/api-specification",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/readme.io/2.0.0/api-specification');
url.searchParams.set('page', '1');
url.searchParams.set('perPage', '10');

const response = await fetch(url, {
  headers: {
    'x-readme-version': 'example'
  },
}); 
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/readme.io/2.0.0/api-specification")
	q := baseURL.Query()
	q.Set("page", "1")
	q.Set("perPage", "10")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)
	req.Header.Set("x-readme-version", "example")

	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/readme.io/2.0.0/api-specification")
uri.query = URI.encode_www_form({
  "page" => "1",
  "perPage" => "10"
})

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

req = Net::HTTP::Get.new(uri)
req["x-readme-version"] = "example"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/readme.io/2.0.0/api-specification?" . http_build_query([
    "page" => "1",
    "perPage" => "10"
]);
$opts = ["http" => [
    "method" => "GET",
    "header" => implode("\r\n", [
        "x-readme-version: example"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get changelogs

Returns a list of changelogs associated with the project API key

https://api.apis.guru/v2/specs/readme.io/2.0.0/changelogs?page=1&perPage=10

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/readme.io/2.0.0/changelogs?page=1&perPage=10"
import requests
params = {
    "page": "1",
    "perPage": "10"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/readme.io/2.0.0/changelogs",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/readme.io/2.0.0/changelogs');
url.searchParams.set('page', '1');
url.searchParams.set('perPage', '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/readme.io/2.0.0/changelogs")
	q := baseURL.Query()
	q.Set("page", "1")
	q.Set("perPage", "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/readme.io/2.0.0/changelogs")
uri.query = URI.encode_www_form({
  "page" => "1",
  "perPage" => "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/readme.io/2.0.0/changelogs?" . http_build_query([
    "page" => "1",
    "perPage" => "10"
]);
$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 API Endpoints?

API Endpoints is a Developer Tools API. Developers commonly use developer tools APIs for:

  • automating code review and quality checks
  • integrating CI/CD pipelines and build systems
  • managing feature flags and A/B tests
  • monitoring errors and application performance
  • generating and validating test data

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

New to APIs? Read our beginner's guide

Open documentation ↗