{
  "generated_at": "2026-05-11T00:56:48.476130+00:00",
  "slug": "1rpc-ai-v1-chat-completions",
  "title": "1rpc \u00b7 Chat Completions",
  "url": "https://1rpc.ai/v1/chat/completions",
  "category": "ai",
  "summary": "1rpc \u00b7 Chat Completions \u2014 x402-protected ai API. Pay $0.010 per call on base. Indexed by x402all.",
  "seo": {
    "title": "1rpc \u00b7 Chat Completions \u2014 x402 ai API \u00b7 $0.010 per call",
    "description": "1rpc \u00b7 Chat Completions \u2014 x402-protected ai API. Pay $0.010 per call on base. Indexed by x402all."
  },
  "use_cases": [],
  "risk_notes": [],
  "pricing_sanity": {
    "flag": "normal",
    "ratio": 1.0,
    "median_category_atomic": 10000
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "indexed_external",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0xa4aa7f9371bf82e484656ba146230f971d0ebda4",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "10000",
      "max_timeout_seconds": 60,
      "mime_type": "application/json",
      "description": "Payment required for 1RPC AI service access",
      "verified": false,
      "hints": {
        "input": {
          "type": "http",
          "method": "POST",
          "bodyFields": {
            "model": {
              "enum": [
                "deepseek-chat",
                "deepseek-reasoner",
                "gpt-4.5-preview",
                "gpt-4o",
                "gpt-4o-mini",
                "o1",
                "o3",
                "o3-mini",
                "o1-mini",
                "o4-mini",
                "gpt-4.1",
                "gpt-4.1-mini",
                "gpt-4.1-nano",
                "gpt-5",
                "gpt-5-mini",
                "gpt-5-nano",
                "claude-opus-4-20250514",
                "claude-sonnet-4-20250514",
                "claude-3-7-sonnet-20250219",
                "claude-3-5-haiku-20241022",
                "claude-3-opus-20240229",
                "claude-3-haiku-20240307",
                "gemini-2.0-flash",
                "gemini-2.0-flash-lite",
                "gemini-1.5-flash",
                "gemini-1.5-flash-8b",
                "gemini-1.5-pro",
                "gemini-2.5-flash-preview-04-17",
                "gemini-2.5-flash-preview-05-20",
                "gemini-2.5-pro-preview-03-25",
                "gemini-2.5-pro-preview-06-05",
                "meta/llama-3.3-70b-instruct-maas",
                "google/gemini-2.0-flash-001",
                "google/gemini-flash-1.5",
                "google/gemini-flash-1.5-8b",
                "openai/gpt-4o-mini",
                "openai/o1-mini-2024-09-12",
                "mistralai/mistral-nemo",
                "meta-llama/llama-3.3-70b-instruct",
                "meta-llama/llama-4-maverick",
                "meta-llama/llama-4-scout"
              ],
              "type": "string"
            },
            "messages": {
              "type": "array",
              "items": {
                "type": "object",
                "required": [
                  "role",
                  "content"
                ],
                "properties": {
                  "role": {
                    "enum": [
                      "user"
                    ],
                    "type": "string"
                  },
                  "content": {
                    "type": "string"
                  }
                }
              }
            }
          }
        },
        "output": {
          "type": "object",
          "required": [
            "id",
            "object",
            "created",
            "model",
            "choices"
          ],
          "properties": {
            "id": {
              "type": "string"
            },
            "model": {
              "type": "string"
            },
            "usage": {
              "type": "object",
              "required": [
                "prompt_tokens",
                "completion_tokens",
                "total_tokens"
              ],
              "properties": {
                "total_tokens": {
                  "type": "number"
                },
                "prompt_tokens": {
                  "type": "number"
                },
                "completion_tokens": {
                  "type": "number"
                },
                "prompt_tokens_details": {
                  "type": "object",
                  "properties": {
                    "audio_tokens": {
                      "type": "number"
                    },
                    "cached_tokens": {
                      "type": "number"
                    }
                  },
                  "additionalProperties": false
                },
                "completion_tokens_details": {
                  "type": "object",
                  "properties": {
                    "audio_tokens": {
                      "type": "number"
                    },
                    "reasoning_tokens": {
                      "type": "number"
                    },
                    "accepted_prediction_tokens": {
                      "type": "number"
                    },
                    "rejected_prediction_tokens": {
                      "type": "number"
                    }
                  },
                  "additionalProperties": false
                }
              },
              "additionalProperties": false
            },
            "object": {
              "enum": [
                "chat.completion"
              ],
              "type": "string"
            },
            "choices": {
              "type": "array",
              "items": {
                "type": "object",
                "required": [
                  "index",
                  "message",
                  "finish_reason"
                ],
                "properties": {
                  "index": {
                    "type": "number"
                  },
                  "message": {
                    "type": "object",
                    "required": [
                      "role",
                      "content"
                    ],
                    "properties": {
                      "role": {
                        "enum": [
                          "assistant"
                        ],
                        "type": "string"
                      },
                      "content": {
                        "type": "string",
                        "nullable": true
                      },
                      "refusal": {
                        "type": "string",
                        "nullable": true
                      }
                    },
                    "additionalProperties": true
                  },
                  "logprobs": {
                    "nullable": true
                  },
                  "finish_reason": {
                    "enum": [
                      "stop",
                      "length",
                      "content_filter"
                    ],
                    "type": "string",
                    "nullable": true
                  }
                },
                "additionalProperties": false
              }
            },
            "created": {
              "type": "number"
            },
            "service_tier": {
              "type": "string",
              "nullable": true
            },
            "system_fingerprint": {
              "type": "string",
              "nullable": true
            }
          },
          "additionalProperties": false
        }
      }
    }
  ],
  "origin": {
    "slug": "1rpc-ai",
    "host": "1rpc.ai",
    "url": "https://1rpc.ai",
    "favicon": "https://1rpc.ai/favicon/favicon.ico"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/1rpc-ai-v1-chat-completions",
    "url": "https://x402all.com/resource/1rpc-ai-v1-chat-completions",
    "name": "1rpc \u00b7 Chat Completions",
    "@type": "WebAPI",
    "offers": {
      "url": "https://x402all.com/resource/1rpc-ai-v1-chat-completions",
      "@type": "Offer",
      "price": "0.01",
      "availability": "https://schema.org/InStock",
      "priceCurrency": "USDC",
      "additionalProperty": [
        {
          "name": "paymentNetwork",
          "@type": "PropertyValue",
          "value": "base"
        },
        {
          "name": "paymentAsset",
          "@type": "PropertyValue",
          "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
        }
      ],
      "priceSpecification": {
        "@type": "UnitPriceSpecification",
        "price": "0.010000",
        "unitText": "call",
        "priceCurrency": "USDC"
      },
      "eligibleCustomerType": "Agent"
    },
    "sameAs": "https://1rpc.ai/v1/chat/completions",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/1rpc-ai",
      "url": "https://1rpc.ai",
      "name": "1rpc.ai",
      "@type": "Organization"
    },
    "identifier": "1rpc-ai-v1-chat-completions",
    "description": "1rpc \u00b7 Chat Completions \u2014 x402-protected ai API. Pay $0.010 per call on base. Indexed by x402all.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=1rpc-ai-v1-chat-completions",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "ai"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=1rpc-ai-v1-chat-completions",
  "callability": {
    "status": "partial",
    "schema_callability": 0.39,
    "source": "facilitator_bazaar",
    "source_confidence": 0.75,
    "match_confidence": 0.4,
    "schema_confidence": 0.5,
    "validated_at": "2026-05-10T23:33:12.943369+00:00",
    "warnings": []
  },
  "contract": {
    "route_template": "https://1rpc.ai/v1/chat/completions",
    "content_type": "application/json",
    "response_schema": {
      "type": "object",
      "required": [
        "id",
        "object",
        "created",
        "model",
        "choices"
      ],
      "properties": {
        "id": {
          "type": "string"
        },
        "model": {
          "type": "string"
        },
        "usage": {
          "type": "object",
          "required": [
            "prompt_tokens",
            "completion_tokens",
            "total_tokens"
          ],
          "properties": {
            "total_tokens": {
              "type": "number"
            },
            "prompt_tokens": {
              "type": "number"
            },
            "completion_tokens": {
              "type": "number"
            },
            "prompt_tokens_details": {
              "type": "object",
              "properties": {
                "audio_tokens": {
                  "type": "number"
                },
                "cached_tokens": {
                  "type": "number"
                }
              },
              "additionalProperties": false
            },
            "completion_tokens_details": {
              "type": "object",
              "properties": {
                "audio_tokens": {
                  "type": "number"
                },
                "reasoning_tokens": {
                  "type": "number"
                },
                "accepted_prediction_tokens": {
                  "type": "number"
                },
                "rejected_prediction_tokens": {
                  "type": "number"
                }
              },
              "additionalProperties": false
            }
          },
          "additionalProperties": false
        },
        "object": {
          "enum": [
            "chat.completion"
          ],
          "type": "string"
        },
        "choices": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "index",
              "message",
              "finish_reason"
            ],
            "properties": {
              "index": {
                "type": "number"
              },
              "message": {
                "type": "object",
                "required": [
                  "role",
                  "content"
                ],
                "properties": {
                  "role": {
                    "enum": [
                      "assistant"
                    ],
                    "type": "string"
                  },
                  "content": {
                    "type": "string",
                    "nullable": true
                  },
                  "refusal": {
                    "type": "string",
                    "nullable": true
                  }
                },
                "additionalProperties": true
              },
              "logprobs": {
                "nullable": true
              },
              "finish_reason": {
                "enum": [
                  "stop",
                  "length",
                  "content_filter"
                ],
                "type": "string",
                "nullable": true
              }
            },
            "additionalProperties": false
          }
        },
        "created": {
          "type": "number"
        },
        "service_tier": {
          "type": "string",
          "nullable": true
        },
        "system_fingerprint": {
          "type": "string",
          "nullable": true
        }
      },
      "additionalProperties": false
    },
    "examples": [],
    "schema_presence": {
      "path_schema": "unknown",
      "query_schema": "unknown",
      "header_schema": "unknown",
      "request_body_schema": "unknown",
      "response_schema": "declared"
    },
    "contract_hash": "c6f677474542bede0318b6ccb9751b64d047fef989292fc000600087dd817834"
  }
}