⚙️
AGENT1 API (A1API)
  • Welcome!
  • Quick Start
  • Reference
    • API Reference
      • Statistics
      • Holders & Wallets
      • Marketplace Information
      • Code Hunter
      • Pets
  • How to test the API?
  • Sample PHP code 101
  • Changelog
  • Community Websites
Powered by GitBook
On this page
  • Get your API keys
  • Install the library
  • Make your first request
  • Get AGENT1 statistics
  • How to quickly test the API?

Quick Start

PreviousWelcome!NextAPI Reference

Last updated 2 years ago

Good to know: The AGENT1 API (A1API) is a public API that is accessible by the world. Few endpoints in the API requires authentication, unlike the other APIs in the JericVerse ecosystem.

Get your API keys

The API is open to the public.

Only a handful API requests are authenticated using API keys.

You can request an API key from the Support at our if you need to use them.

Install the library

Oops! There is currently no need to install anything. It is a REST API.

Make your first request

To make your first request, send a GET request to the getStats endpoint. This will create read the AGENT1 statistics, which is nice.

Get AGENT1 statistics

GET https://agent1.xyz/nft/getStats/all

Gets a summary of useful statistics for the AGENT1 project.

{
    "revealed_agent1s":2537,
    "super_agent1s":0,
    "animations":96,
    "threed":0
}

How to quickly test the API?

Discord server
How to test the API?
Sample PHP code 101