{
  "x402Version": 2,
  "id": 13188,
  "slug": "13188",
  "resource": "https://x402engine.app/api/llm/gemini-flash",
  "description": "Google's fast model — great balance of speed, quality, and cost for everyday tasks",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x7dd5Be069f2d2eAd75eC7C3423B116fF043c2629",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "12187",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:4326",
      "payTo": "0x7dd5Be069f2d2eAd75eC7C3423B116fF043c2629",
      "asset": "0xFAfDdbb3FC7688494971a79cc65DCa3EF82079E7",
      "amount": "12187000000000000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
      "payTo": "Gzehfseq1k9AcHFSoV7qHmDGQx92nLMw78XXdqVWQQWa",
      "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "amount": "12187",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "max_tokens": 1024,
            "messages": [
              {
                "content": "Hello",
                "role": "user"
              }
            ]
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "additionalProperties": false,
                "properties": {
                  "include_reasoning": {
                    "description": "Model-supported include_reasoning; see /docs/llm-capabilities.md.",
                    "type": "boolean"
                  },
                  "max_completion_tokens": {
                    "description": "Alias for total output budget; bounded by model maxOutputTokens.",
                    "type": "integer"
                  },
                  "max_tokens": {
                    "description": "Total output budget, including reasoning. Use this or max_completion_tokens.",
                    "example": 1024,
                    "type": "integer"
                  },
                  "messages": {
                    "description": "Text or model-supported multimodal messages; assistant tool calls may have null content",
                    "items": {
                      "additionalProperties": false,
                      "anyOf": [
                        {
                          "required": [
                            "content"
                          ]
                        },
                        {
                          "required": [
                            "tool_calls"
                          ]
                        }
                      ],
                      "properties": {
                        "annotations": {
                          "items": {
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "cache_control": {
                          "type": "object"
                        },
                        "content": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            },
                            {
                              "items": {
                                "additionalProperties": true,
                                "properties": {
                                  "type": {
                                    "enum": [
                                      "text",
                                      "file",
                                      "image_url",
                                      "input_audio",
                                      "video_url"
                                    ],
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "type"
                                ],
                                "type": "object"
                              },
                              "maxItems": 100,
                              "minItems": 1,
                              "type": "array"
                            }
                          ]
                        },
                        "name": {
                          "type": "string"
                        },
                        "reasoning": {
                          "type": "string"
                        },
                        "reasoning_details": {
                          "items": {
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "refusal": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "role": {
                          "enum": [
                            "system",
                            "developer",
                            "user",
                            "assistant",
                            "tool"
                          ],
                          "type": "string"
                        },
                        "tool_call_id": {
                          "type": "string"
                        },
                        "tool_calls": {
                          "items": {
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "required": [
                        "role"
                      ],
                      "type": "object"
                    },
                    "maxItems": 100,
                    "minItems": 1,
                    "type": "array"
                  },
                  "plugins": {
                    "description": "Optional native PDF parser only; automatically enabled for file inputs.",
                    "items": {
                      "properties": {
                        "id": {
                          "enum": [
                            "file-parser"
                          ],
                          "type": "string"
                        },
                        "pdf": {
                          "properties": {
                            "engine": {
                              "enum": [
                                "native"
                              ],
                              "type": "string"
                            }
                          },
                          "type": "object"
                        }
                      },
                      "required": [
                        "pdf"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "reasoning": {
                    "description": "Model-supported reasoning; see /docs/llm-capabilities.md.",
                    "type": "object"
                  },
                  "response_format": {
                    "description": "Model-supported response_format; see /docs/llm-capabilities.md.",
                    "type": "object"
                  },
                  "seed": {
                    "description": "Model-supported seed; see /docs/llm-capabilities.md.",
                    "type": "integer"
                  },
                  "stop": {
                    "description": "Model-supported stop; see /docs/llm-capabilities.md.",
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "items": {
                          "type": "string"
                        },
                        "maxItems": 4,
                        "type": "array"
                      }
                    ]
                  },
                  "stream": {
                    "description": "Return live OpenAI-compatible SSE after payment settlement.",
                    "type": "boolean"
                  },
                  "stream_options": {
                    "description": "Optional include_usage boolean; usage is always requested upstream.",
                    "type": "object"
                  },
                  "temperature": {
                    "description": "Model-supported temperature; see /docs/llm-capabilities.md.",
                    "type": "number"
                  },
                  "tool_choice": {
                    "description": "Model-supported tool_choice; see /docs/llm-capabilities.md.",
                    "oneOf": [
                      {
                        "enum": [
                          "auto",
                          "none",
                          "required"
                        ],
                        "type": "string"
                      },
                      {
                        "type": "object"
                      }
                    ]
                  },
                  "tools": {
                    "description": "Client-executed function definitions; return results using role=tool and tool_call_id.",
                    "items": {
                      "properties": {
                        "function": {
                          "properties": {
                            "description": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            },
                            "parameters": {
                              "type": "object"
                            },
                            "strict": {
                              "type": "boolean"
                            }
                          },
                          "type": "object"
                        },
                        "type": {
                          "enum": [
                            "function"
                          ],
                          "type": "string"
                        }
                      },
                      "required": [
                        "function"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "top_p": {
                    "description": "Model-supported top_p; see /docs/llm-capabilities.md.",
                    "type": "number"
                  }
                },
                "required": [
                  "messages"
                ],
                "type": "object"
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "bodyType",
              "body",
              "method"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "x402engine.app",
  "lastUpdated": "2026-09-12T09:52:53.955Z",
  "quality": {
    "calls30d": 5,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-12T09:52:53.616Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "x402engine.app",
    "manifest_name": "x402engine.app",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}