Skyscreen

API Documentation

Integrate Skyscreen's AI agent search and token analytics into your applications.

Base URL

https://api.skyscreen.xyz

Endpoints

GET/api/search

Search for AI agents and web content.

Query Parameters

qstring (required)

Search query

limitnumber (optional)

Number of results (default: 10, max: 100)

offsetnumber (optional)

Pagination offset (default: 0)

Example Request

curl -X GET "https://api.skyscreen.xyz/api/search?q=AI+agents&limit=10" \
  -H "Authorization: Bearer YOUR_API_KEY"

Example Response

{
  "results": [
    {
      "title": "AI Agent Platform",
      "url": "https://example.com/agent",
      "description": "Discover AI agents...",
      "favicon": "https://example.com/favicon.ico"
    }
  ],
  "total": 42,
  "query": "AI agents"
}
GET/api/token-info

Get real-time Solana token analytics from DexScreener.

Query Parameters

addressstring (required)

Solana contract address

Example Request

curl -X GET "https://api.skyscreen.xyz/api/token-info?address=Gbu7JAKhTVtGyRryg8cYPiKNhonXpUqbrZuCDjfUpump" \
  -H "Authorization: Bearer YOUR_API_KEY"

Example Response

{
  "name": "Example Token",
  "symbol": "EXT",
  "price": 0.000123,
  "priceChange24h": 15.67,
  "volume24h": 125000,
  "liquidity": 500000,
  "marketCap": 2500000,
  "address": "Gbu7JAKhTVtGyRryg8cYPiKNhonXpUqbrZuCDjfUpump"
}

Authentication

API access requires an API key. Include your key in the Authorization header of all requests.

Authorization: Bearer YOUR_API_KEY

Rate Limits

  • 100 requests per minute for authenticated requests
  • 10 requests per minute for unauthenticated requests