Authentication
GLOBAL BRIDGE APIλ λͺ¨λ μμ²μ λν΄ **Bearer Token** μΈμ¦ λ°©μμ μ¬μ©ν©λλ€. κ΄λ¦¬μ λμ보λμ 'API Keys' νμμ μμ±ν Secret Keyλ₯Ό λͺ¨λ HTTP μμ² ν€λμ ν¬ν¨ν΄μΌ ν©λλ€.
Header Example
Authorization: Bearer gb_live_xxxxxxxxxxxx
POST Sourcing Engine
νΉμ μΌνλͺ°μ URLμ μ λ ₯λ°μ μνλͺ , κ°κ²©, μ΅μ , μ΄λ―Έμ§ λ± λͺ¨λ μ ννλ λ°μ΄ν°λ₯Ό JSONμΌλ‘ λ°νν©λλ€.
Body Parameters
url
Required
μμ§ν μνμ μμΈνμ΄μ§ URL
translate
Optional
μμ§ μ¦μ AI λ²μ μμ§ κ°λ μ¬λΆ (default: true)
curl https://api.uqbig.com/v1/source \
-H "Authorization: Bearer gb_live_xxxx" \
-H "Content-Type: application/json" \
-d '{
"url": "https://amazon.com/dp/B08X12345",
"translate": true
}'
{
"id": "prod_8x991",
"status": "success",
"data": {
"title": "κ³ μ±λ₯ 무μ λ
Έμ΄μ¦μΊμ¬λ§ ν€λμ
",
"price_krw": 158200,
"options": ["Black", "Silver"],
"images": [
"https://cdn.gb.io/tr_8x1.jpg"
]
}
}